aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction
diff options
context:
space:
mode:
authorNicola Mettifogo2007-01-27 00:20:41 +0000
committerNicola Mettifogo2007-01-27 00:20:41 +0000
commitc77ac3380a774404b6466d1a2b11a7ee17334ef2 (patch)
treee914ba76526f46adc6594ddddd3bafb1e17dc01a /engines/parallaction
parent8205cd9d3df142dca001294ca24af1c98c34bb5c (diff)
downloadscummvm-rg350-c77ac3380a774404b6466d1a2b11a7ee17334ef2.tar.gz
scummvm-rg350-c77ac3380a774404b6466d1a2b11a7ee17334ef2.tar.bz2
scummvm-rg350-c77ac3380a774404b6466d1a2b11a7ee17334ef2.zip
removed printf's spewing out tons of debug messages
svn-id: r25217
Diffstat (limited to 'engines/parallaction')
-rw-r--r--engines/parallaction/graphics.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/parallaction/graphics.cpp b/engines/parallaction/graphics.cpp
index b3de7916e0..7b40642d55 100644
--- a/engines/parallaction/graphics.cpp
+++ b/engines/parallaction/graphics.cpp
@@ -352,7 +352,7 @@ void Graphics::floodFill(byte color, uint16 left, uint16 top, uint16 right, uint
void Graphics::flatBlit(uint16 w, uint16 h, int16 x, int16 y, byte *data, Graphics::Buffers buffer) {
- printf("Graphics::flatBlit(%i, %i, %i, %i)\n", w, h, x, y);
+// printf("Graphics::flatBlit(%i, %i, %i, %i)\n", w, h, x, y);
// source coordinates
int16 left = 0, top = 0;
@@ -376,7 +376,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;
- printf("Graphics::flatBlit CLIPPED (%i, %i, %i, %i) -> (%i, %i) %x %x\n", left, top, right, bottom, x, y, (uint32)s, (uint32)d);
+// printf("Graphics::flatBlit CLIPPED (%i, %i, %i, %i) -> (%i, %i) %x %x\n", left, top, right, bottom, x, y, (uint32)s, (uint32)d);
for (uint16 i = top; i < bottom; i++) {
for (uint16 j = left; j < right; j++) {
@@ -389,11 +389,11 @@ void Graphics::flatBlit(uint16 w, uint16 h, int16 x, int16 y, byte *data, Graphi
d += (SCREEN_WIDTH - right + left);
}
- printf("Graphics::flatBlit BLITTED\n");
+// printf("Graphics::flatBlit BLITTED\n");
if (buffer == kBitFront) updateScreen();
- printf("Graphics::flatBlit DONE\n");
+// printf("Graphics::flatBlit DONE\n");
return;