diff options
-rw-r--r-- | scumm/gfx.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scumm/gfx.cpp b/scumm/gfx.cpp index f8a6aa222b..d2ef384114 100644 --- a/scumm/gfx.cpp +++ b/scumm/gfx.cpp @@ -854,6 +854,9 @@ void Gdi::drawBitmap(byte *ptr, VirtScreen *vs, int x, int y, const int h, assert(smap_ptr); numzbuf = _disable_zbuffer ? 0 : _numZBuffer; + if (_vm->_features & GF_OLD_BUNDLE) { // FIXME make masks decompress properly + numzbuf = 0; + } assert(numzbuf <= (int)ARRAYSIZE(zplane_list)); if (_vm->_features & GF_OLD_BUNDLE) { |