mirror of
https://github.com/scummvm/scummvm.git
synced 2026-06-20 05:45:29 +00:00
Use MIN with correct template <int>
svn-id: r38375
This commit is contained in:
@@ -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<int>(cmd_params[0].val, VOCAB_TREE_NODES);
|
||||
int i;
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user