diff options
-rw-r--r-- | engines/cine/script.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/engines/cine/script.cpp b/engines/cine/script.cpp index 5938f79319..587a04b6e2 100644 --- a/engines/cine/script.cpp +++ b/engines/cine/script.cpp @@ -2127,13 +2127,11 @@ void executeScript(prcLinkedListStruct *scriptElement, uint16 params) { byte opcode = getNextByte(); - //printf("Op: %X\n", opcode - 1); - if (opcode && opcode < _numOpcodes) { if (_opcodeTable[opcode - 1]) (_opcodeTable[opcode - 1]) (); else - warning("Undefined opcode %X", opcode - 1); + warning("Undefined opcode 0x%02X", opcode - 1); } } } |