aboutsummaryrefslogtreecommitdiff
path: root/scumm/gfx.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'scumm/gfx.cpp')
-rw-r--r--scumm/gfx.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/scumm/gfx.cpp b/scumm/gfx.cpp
index 9547fd8654..beed742fd2 100644
--- a/scumm/gfx.cpp
+++ b/scumm/gfx.cpp
@@ -1028,8 +1028,10 @@ void Gdi::drawBitmap(const byte *ptr, VirtScreen *vs, int x, int y, const int wi
smap_ptr = _vm->findResource(MKID('SMAP'), ptr);
// newer Humongous titles use this
+ // smap_ptr = _vm->findResource(MKID('BMAP'), ptr);
+ // HACK Until BMAP support is added
if (smap_ptr == NULL)
- smap_ptr = _vm->findResource(MKID('BMAP'), ptr);
+ return;
assert(smap_ptr);