aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorNicola Mettifogo2007-02-05 12:53:40 +0000
committerNicola Mettifogo2007-02-05 12:53:40 +0000
commit710105d1c1ab5ec00477dc098ac9bb8f09c6b13c (patch)
tree02554d16f92b24cfc5747f59f89d97efca88db88 /engines
parentb7160638bf2be269c231a63d25222419f5f6e46b (diff)
downloadscummvm-rg350-710105d1c1ab5ec00477dc098ac9bb8f09c6b13c.tar.gz
scummvm-rg350-710105d1c1ab5ec00477dc098ac9bb8f09c6b13c.tar.bz2
scummvm-rg350-710105d1c1ab5ec00477dc098ac9bb8f09c6b13c.zip
solved 64 bit casting issue from BUG #1648325
svn-id: r25391
Diffstat (limited to 'engines')
-rw-r--r--engines/parallaction/graphics.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/parallaction/graphics.cpp b/engines/parallaction/graphics.cpp
index ecb3a2e574..2400d90d3c 100644
--- a/engines/parallaction/graphics.cpp
+++ b/engines/parallaction/graphics.cpp
@@ -384,7 +384,7 @@ void Graphics::flatBlit(uint16 w, uint16 h, int16 x, int16 y, byte *data, Graphi
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++) {