[Scummvm-cvs-logs] CVS: scummvm x11.cpp,1.26,1.27
Lionel Ulmer
bbrox at users.sourceforge.net
Tue May 14 14:24:04 CEST 2002
Update of /cvsroot/scummvm/scummvm
In directory usw-pr-cvs1:/tmp/cvs-serv5052
Modified Files:
x11.cpp
Log Message:
Note to self : always check the diff before comitting :-)
Index: x11.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/x11.cpp,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -d -r1.26 -r1.27
--- x11.cpp 14 May 2002 21:16:01 -0000 1.26
+++ x11.cpp 14 May 2002 21:23:41 -0000 1.27
@@ -477,8 +477,6 @@
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 @@
AddDirtyRec(x, y, w, h);
while (h-- > 0) {
- fprintf(stderr, " => %d %p\n", h, buf);
memcpy(dst, buf, w);
dst += fb_width;
buf += pitch;
More information about the Scummvm-git-logs
mailing list