diff options
author | Lionel Ulmer | 2002-05-14 21:23:41 +0000 |
---|---|---|
committer | Lionel Ulmer | 2002-05-14 21:23:41 +0000 |
commit | 911ddca0d4e11e58b437434935be18d88e350111 (patch) | |
tree | ddf433b31cbfe6ea5fc59f535034cd0593dd4828 | |
parent | ecadf4fb07a386316d46674079dec07906962268 (diff) | |
download | scummvm-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
-rw-r--r-- | x11.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -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; |