From 6dbd7e21eb3024387607f2d2ebbac3dab258c85f Mon Sep 17 00:00:00 2001 From: Lars Persson Date: Mon, 16 Feb 2009 18:37:28 +0000 Subject: Use MIN with correct template svn-id: r38375 --- engines/sci/engine/scriptdebug.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines') diff --git a/engines/sci/engine/scriptdebug.cpp b/engines/sci/engine/scriptdebug.cpp index 72fe1a5487..1796edb5de 100644 --- a/engines/sci/engine/scriptdebug.cpp +++ b/engines/sci/engine/scriptdebug.cpp @@ -1601,7 +1601,7 @@ disassemble(state_t *s, reg_t pos, int print_bw_tag, int print_bytecode) int c_dumpnodes(state_t *s) { - int end = MIN(cmd_params[0].val, VOCAB_TREE_NODES); + int end = MIN(cmd_params[0].val, VOCAB_TREE_NODES); int i; -- cgit v1.2.3