diff options
Diffstat (limited to 'engines')
-rw-r--r-- | engines/gob/inter_v1.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/gob/inter_v1.cpp b/engines/gob/inter_v1.cpp index 933bb2f2ed..bbd972c459 100644 --- a/engines/gob/inter_v1.cpp +++ b/engines/gob/inter_v1.cpp @@ -831,7 +831,7 @@ bool Inter_v1::o1_if(OpFuncParams ¶ms) { _vm->_game->_script->skip(_vm->_game->_script->peekUint16(2) + 2); - debugC(5, kDebugGameFlow, "cmd = %d", (int16) _vm->_game->_script->peekByte()); + debugC(6, kDebugGameFlow, "cmd = %d", (int16) _vm->_game->_script->peekByte()); cmd = _vm->_game->_script->readByte() >> 4; if (cmd != 12) @@ -841,7 +841,7 @@ bool Inter_v1::o1_if(OpFuncParams ¶ms) { } else { _vm->_game->_script->skip(_vm->_game->_script->peekUint16(2) + 2); - debugC(5, kDebugGameFlow, "cmd = %d", (int16) _vm->_game->_script->peekByte()); + debugC(6, kDebugGameFlow, "cmd = %d", (int16) _vm->_game->_script->peekByte()); cmd = _vm->_game->_script->readByte() >> 4; if (cmd != 12) |