aboutsummaryrefslogtreecommitdiff
path: root/scumm/gfx.cpp
diff options
context:
space:
mode:
authorPaweł Kołodziejski2002-09-30 06:22:11 +0000
committerPaweł Kołodziejski2002-09-30 06:22:11 +0000
commit4fc67f55c0212807f89a260315d59b6ba8deb30a (patch)
tree097d8815cf005d09dfb7f6ebca4e156b1182b00c /scumm/gfx.cpp
parent9c436e622043e3dae548c0e95fb549b1da4e4356 (diff)
downloadscummvm-rg350-4fc67f55c0212807f89a260315d59b6ba8deb30a.tar.gz
scummvm-rg350-4fc67f55c0212807f89a260315d59b6ba8deb30a.tar.bz2
scummvm-rg350-4fc67f55c0212807f89a260315d59b6ba8deb30a.zip
fixed compilation
svn-id: r5051
Diffstat (limited to 'scumm/gfx.cpp')
-rw-r--r--scumm/gfx.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/gfx.cpp b/scumm/gfx.cpp
index 11c7139f56..a655420662 100644
--- a/scumm/gfx.cpp
+++ b/scumm/gfx.cpp
@@ -975,7 +975,7 @@ void Gdi::drawBitmap(byte *ptr, VirtScreen *vs, int x, int y, int h,
else
decompressMaskImg();
} else {
- if (!(_useOrDecompress && flag & dbAllowMaskOr));
+ if (!(_useOrDecompress && flag & dbAllowMaskOr))
for (int h = 0; h < _numLinesToProcess; h++)
_mask_ptr_dest[h * NUM_STRIPS] = 0;
/* needs better abstraction, FIXME */