diff options
author | James Brown | 2002-05-05 18:46:04 +0000 |
---|---|---|
committer | James Brown | 2002-05-05 18:46:04 +0000 |
commit | 3eb0ba3da458c12ffa896b538f318ab6c159e0b7 (patch) | |
tree | 331238a369b9faa077e1c8ee888aee98252917eb | |
parent | 7bee21d0a2d08985e029a1eb7dc4f3d07c50606f (diff) | |
download | scummvm-rg350-3eb0ba3da458c12ffa896b538f318ab6c159e0b7.tar.gz scummvm-rg350-3eb0ba3da458c12ffa896b538f318ab6c159e0b7.tar.bz2 scummvm-rg350-3eb0ba3da458c12ffa896b538f318ab6c159e0b7.zip |
Remove debug printfs :)
svn-id: r4207
-rw-r--r-- | gfx.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -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; |