[Scummvm-cvs-logs] SF.net SVN: scummvm: [25377] scummvm/trunk/engines/parallaction/graphics. cpp

peres001 at users.sourceforge.net peres001 at users.sourceforge.net
Sun Feb 4 09:26:45 CET 2007


Revision: 25377
          http://scummvm.svn.sourceforge.net/scummvm/?rev=25377&view=rev
Author:   peres001
Date:     2007-02-04 00:26:44 -0800 (Sun, 04 Feb 2007)

Log Message:
-----------
oops fixed 64 bit warnings in the last revision

Modified Paths:
--------------
    scummvm/trunk/engines/parallaction/graphics.cpp

Modified: scummvm/trunk/engines/parallaction/graphics.cpp
===================================================================
--- scummvm/trunk/engines/parallaction/graphics.cpp	2007-02-04 08:12:33 UTC (rev 25376)
+++ scummvm/trunk/engines/parallaction/graphics.cpp	2007-02-04 08:26:44 UTC (rev 25377)
@@ -458,9 +458,8 @@
 void jobDisplayLabel(void *parm, Job *j) {
 
 	ZoneLabel *label = (ZoneLabel*)parm;
+    debugC(1, kDebugLocation, "jobDisplayLabel (%p)", (const void*) label);
 
-   debugC(1, kDebugLocation, "jobDisplayLabel (%x)", (uint32) label);
-
 	if (label->_cnv._width == 0) return;
 	_vm->_graphics->flatBlitCnv(&label->_cnv, Graphics::_labelPosition[0]._x, Graphics::_labelPosition[0]._y, Graphics::kBitBack, label->_cnv._data1);
 
@@ -470,7 +469,7 @@
 void jobEraseLabel(void *parm, Job *j) {
 	ZoneLabel *label = (ZoneLabel*)parm;
 
-    debugC(1, kDebugLocation, "jobEraseLabel (%x)", (uint32) label);
+    debugC(1, kDebugLocation, "jobEraseLabel (%p)", (const void*) label);
 
 	int16 _si, _di;
 


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