diff options
author | Torbjörn Andersson | 2008-05-08 04:48:55 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2008-05-08 04:48:55 +0000 |
commit | 500237d8ed505823d415969c58ee56ce30c3782f (patch) | |
tree | 31aeeaadb614e69a227892928c402e95905ea2ab /engines/gob | |
parent | e2e2af4ff5f66ffce70f8ac389112778eb9b142e (diff) | |
download | scummvm-rg350-500237d8ed505823d415969c58ee56ce30c3782f.tar.gz scummvm-rg350-500237d8ed505823d415969c58ee56ce30c3782f.tar.bz2 scummvm-rg350-500237d8ed505823d415969c58ee56ce30c3782f.zip |
GCC says these are ints, not long ints. Adjust the format strings accordingly.
svn-id: r31940
Diffstat (limited to 'engines/gob')
-rw-r--r-- | engines/gob/inter_v4.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/gob/inter_v4.cpp b/engines/gob/inter_v4.cpp index 6ed05af690..e2b57797e0 100644 --- a/engines/gob/inter_v4.cpp +++ b/engines/gob/inter_v4.cpp @@ -640,7 +640,7 @@ void Inter_v4::setupOpcodes() { } void Inter_v4::executeDrawOpcode(byte i) { - debugC(1, kDebugDrawOp, "opcodeDraw %d [0x%X] (%s) - %s, %ld", + debugC(1, kDebugDrawOp, "opcodeDraw %d [0x%X] (%s) - %s, %d", i, i, getOpcodeDrawDesc(i), _vm->_game->_curTotFile, _vm->_global->_inter_execPtr - _vm->_game->_totFileData); @@ -653,7 +653,7 @@ void Inter_v4::executeDrawOpcode(byte i) { } bool Inter_v4::executeFuncOpcode(byte i, byte j, OpFuncParams ¶ms) { - debugC(1, kDebugFuncOp, "opcodeFunc %d.%d [0x%X.0x%X] (%s) - %s, %ld", + debugC(1, kDebugFuncOp, "opcodeFunc %d.%d [0x%X.0x%X] (%s) - %s, %d", i, j, i, j, getOpcodeFuncDesc(i, j), _vm->_game->_curTotFile, _vm->_global->_inter_execPtr - _vm->_game->_totFileData); @@ -673,7 +673,7 @@ bool Inter_v4::executeFuncOpcode(byte i, byte j, OpFuncParams ¶ms) { } void Inter_v4::executeGoblinOpcode(int i, OpGobParams ¶ms) { - debugC(1, kDebugGobOp, "opcodeGoblin %d [0x%X] (%s) - %s, %ld", + debugC(1, kDebugGobOp, "opcodeGoblin %d [0x%X] (%s) - %s, %d", i, i, getOpcodeGoblinDesc(i), _vm->_game->_curTotFile, _vm->_global->_inter_execPtr - _vm->_game->_totFileData); |