mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-04 16:26:53 +00:00
Use MIN with correct template <int>
svn-id: r38375
This commit is contained in:
parent
a43b0bc2dc
commit
6dbd7e21eb
@ -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;
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user