diff options
-rw-r--r-- | engines/sherlock/scalpel/scalpel_talk.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sherlock/scalpel/scalpel_talk.cpp b/engines/sherlock/scalpel/scalpel_talk.cpp index c86720f778..64904e0a46 100644 --- a/engines/sherlock/scalpel/scalpel_talk.cpp +++ b/engines/sherlock/scalpel/scalpel_talk.cpp @@ -162,7 +162,7 @@ ScalpelTalk::ScalpelTalk(SherlockEngine *vm) : Talk(vm) { if (vm->getLanguage() == Common::DE_DEU || vm->getLanguage() == Common::ES_ESP) { // The German and Spanish versions use a different opcode range static byte opcodes[sizeof(SCALPEL_OPCODES)]; - for (int idx = 0; idx < sizeof(SCALPEL_OPCODES); ++idx) + for (uint idx = 0; idx < sizeof(SCALPEL_OPCODES); ++idx) opcodes[idx] = SCALPEL_OPCODES[idx] ? SCALPEL_OPCODES[idx] + 47 : 0; _opcodes = opcodes; |