aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorSven Hesse2011-01-18 07:02:42 +0000
committerSven Hesse2011-01-18 07:02:42 +0000
commitdd01e4c303241d04096149cc978af0a049beca6d (patch)
tree202bcb52eb51ecc7be16d7def19d6b8916bd7c62 /engines
parente73484b2599c3dd5013fa840160bb2a58fa84677 (diff)
downloadscummvm-rg350-dd01e4c303241d04096149cc978af0a049beca6d.tar.gz
scummvm-rg350-dd01e4c303241d04096149cc978af0a049beca6d.tar.bz2
scummvm-rg350-dd01e4c303241d04096149cc978af0a049beca6d.zip
GOB: Increase debug level for a debug message
svn-id: r55287
Diffstat (limited to 'engines')
-rw-r--r--engines/gob/inter_v1.cpp4
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 &params) {
_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 &params) {
} 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)