aboutsummaryrefslogtreecommitdiff
path: root/gfx.cpp
diff options
context:
space:
mode:
authorJames Brown2002-05-05 18:46:04 +0000
committerJames Brown2002-05-05 18:46:04 +0000
commit3eb0ba3da458c12ffa896b538f318ab6c159e0b7 (patch)
tree331238a369b9faa077e1c8ee888aee98252917eb /gfx.cpp
parent7bee21d0a2d08985e029a1eb7dc4f3d07c50606f (diff)
downloadscummvm-rg350-3eb0ba3da458c12ffa896b538f318ab6c159e0b7.tar.gz
scummvm-rg350-3eb0ba3da458c12ffa896b538f318ab6c159e0b7.tar.bz2
scummvm-rg350-3eb0ba3da458c12ffa896b538f318ab6c159e0b7.zip
Remove debug printfs :)
svn-id: r4207
Diffstat (limited to 'gfx.cpp')
-rw-r--r--gfx.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/gfx.cpp b/gfx.cpp
index 91d7e97aa0..cf0a86c64a 100644
--- a/gfx.cpp
+++ b/gfx.cpp
@@ -768,13 +768,13 @@ void Gdi::drawBitmap(byte *ptr, VirtScreen * vs, int x, int y, int h,
else
decompressMaskImg();
}
- printf("numzbuf: %d\n", numzbuf);
+
for (i = 1; i < numzbuf; i++) {
uint16 offs;
if (!zplane_list[i])
continue;
- printf("zbuf %d\n", i);
+
if (_vm->_features & GF_SMALL_HEADER)
if (_vm->_features & GF_OLD256)
offs = READ_LE_UINT16(zplane_list[i] + stripnr * 2 + 4);
@@ -2294,8 +2294,7 @@ byte Scumm::isMaskActiveAt(int l, int t, int r, int b, byte *mem)
do {
for (i = 0; i <= w; i++)
- if (mem[i]) {
- //printf("memi is %d\n", mem[i]);
+ if (mem[i]) {
return true;
}
mem += 40;