[Scummvm-cvs-logs] SF.net SVN: scummvm: [31940] scummvm/trunk/engines/gob/inter_v4.cpp

eriktorbjorn at users.sourceforge.net eriktorbjorn at users.sourceforge.net
Thu May 8 06:48:56 CEST 2008


Revision: 31940
          http://scummvm.svn.sourceforge.net/scummvm/?rev=31940&view=rev
Author:   eriktorbjorn
Date:     2008-05-07 21:48:55 -0700 (Wed, 07 May 2008)

Log Message:
-----------
GCC says these are ints, not long ints. Adjust the format strings accordingly.

Modified Paths:
--------------
    scummvm/trunk/engines/gob/inter_v4.cpp

Modified: scummvm/trunk/engines/gob/inter_v4.cpp
===================================================================
--- scummvm/trunk/engines/gob/inter_v4.cpp	2008-05-08 02:46:12 UTC (rev 31939)
+++ scummvm/trunk/engines/gob/inter_v4.cpp	2008-05-08 04:48:55 UTC (rev 31940)
@@ -640,7 +640,7 @@
 }
 
 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 @@
 }
 
 bool Inter_v4::executeFuncOpcode(byte i, byte j, OpFuncParams &params) {
-	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 @@
 }
 
 void Inter_v4::executeGoblinOpcode(int i, OpGobParams &params) {
-	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);
 


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list