aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;