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

peres001 at users.sourceforge.net peres001 at users.sourceforge.net
Mon Feb 5 13:53:41 CET 2007


Revision: 25391
          http://scummvm.svn.sourceforge.net/scummvm/?rev=25391&view=rev
Author:   peres001
Date:     2007-02-05 04:53:40 -0800 (Mon, 05 Feb 2007)

Log Message:
-----------
solved 64 bit casting issue from BUG #1648325

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

Modified: scummvm/trunk/engines/parallaction/graphics.cpp
===================================================================
--- scummvm/trunk/engines/parallaction/graphics.cpp	2007-02-04 17:45:00 UTC (rev 25390)
+++ scummvm/trunk/engines/parallaction/graphics.cpp	2007-02-05 12:53:40 UTC (rev 25391)
@@ -384,7 +384,7 @@
 	byte *s = data + left + top * w;
 	byte *d = _buffers[buffer] + x + y * SCREEN_WIDTH;
 
-	debugC(9, kDebugGraphics, "Graphics::flatBlit CLIPPED (%i, %i, %i, %i) -> (%i, %i) %x %x", left, top, right, bottom, x, y, (uint32)s, (uint32)d);
+	debugC(9, kDebugGraphics, "Graphics::flatBlit CLIPPED (%i, %i, %i, %i) -> (%i, %i) %p %p", left, top, right, bottom, x, y, (const void*)s, (const void*)d);
 
 	for (uint16 i = top; i < bottom; i++) {
 		for (uint16 j = left; j < right; j++) {


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