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