aboutsummaryrefslogtreecommitdiff
path: root/x11.cpp
diff options
context:
space:
mode:
authorLionel Ulmer2002-05-14 21:23:41 +0000
committerLionel Ulmer2002-05-14 21:23:41 +0000
commit911ddca0d4e11e58b437434935be18d88e350111 (patch)
treeddf433b31cbfe6ea5fc59f535034cd0593dd4828 /x11.cpp
parentecadf4fb07a386316d46674079dec07906962268 (diff)
downloadscummvm-rg350-911ddca0d4e11e58b437434935be18d88e350111.tar.gz
scummvm-rg350-911ddca0d4e11e58b437434935be18d88e350111.tar.bz2
scummvm-rg350-911ddca0d4e11e58b437434935be18d88e350111.zip
Note to self : always check the diff before comitting :-)
svn-id: r4327
Diffstat (limited to 'x11.cpp')
-rw-r--r--x11.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/x11.cpp b/x11.cpp
index 2c9dd648ae..e88a298f6d 100644
--- a/x11.cpp
+++ b/x11.cpp
@@ -477,8 +477,6 @@ void OSystem_X11::set_palette(const byte *colors, uint start, uint num) {
void OSystem_X11::copy_rect(const byte *buf, int pitch, int x, int y, int w, int h) {
unsigned char *dst;
- fprintf(stderr, "%d %d %d %d %d %p\n", pitch, x, y, w, h, buf);
-
if (y < 0) {
h += y;
buf -= y * pitch;
@@ -498,7 +496,6 @@ void OSystem_X11::copy_rect(const byte *buf, int pitch, int x, int y, int w, int
AddDirtyRec(x, y, w, h);
while (h-- > 0) {
- fprintf(stderr, " => %d %p\n", h, buf);
memcpy(dst, buf, w);
dst += fb_width;
buf += pitch;