diff options
author | Paweł Kołodziejski | 2002-09-30 06:22:11 +0000 |
---|---|---|
committer | Paweł Kołodziejski | 2002-09-30 06:22:11 +0000 |
commit | 4fc67f55c0212807f89a260315d59b6ba8deb30a (patch) | |
tree | 097d8815cf005d09dfb7f6ebca4e156b1182b00c | |
parent | 9c436e622043e3dae548c0e95fb549b1da4e4356 (diff) | |
download | scummvm-rg350-4fc67f55c0212807f89a260315d59b6ba8deb30a.tar.gz scummvm-rg350-4fc67f55c0212807f89a260315d59b6ba8deb30a.tar.bz2 scummvm-rg350-4fc67f55c0212807f89a260315d59b6ba8deb30a.zip |
fixed compilation
svn-id: r5051
-rw-r--r-- | scumm/gfx.cpp | 2 |
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 */ |