diff options
-rw-r--r-- | scumm/object.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/object.cpp b/scumm/object.cpp index a741321326..9a2589da2c 100644 --- a/scumm/object.cpp +++ b/scumm/object.cpp @@ -475,7 +475,7 @@ void ScummEngine::drawObject(int obj, int arg) { } if (numstrip != 0) { - byte flags = Gdi::dbAllowMaskOr; + byte flags = (_features & GF_HUMONGOUS) ? 0 : Gdi::dbAllowMaskOr; if (_version == 1) { gdi._C64ObjectMode = true; gdi.decodeC64Gfx(ptr, gdi._C64ObjectMap, width * (height / 8) * 3); |