diff options
Diffstat (limited to 'scumm')
-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 e539cf041f..04cbf8e694 100644 --- a/scumm/object.cpp +++ b/scumm/object.cpp @@ -489,7 +489,7 @@ void ScummEngine::drawObject(int obj, int arg) { // Sam & Max needs this to fix object-layering problems with // the inventory and conversation icons. - if ((_version >= 7 || _gameId == GID_SAMNMAX) && getClass(od.obj_nr, kObjectClassIgnoreBoxes)) + if ((_version == 7 || _gameId == GID_SAMNMAX) && getClass(od.obj_nr, kObjectClassIgnoreBoxes)) flags |= Gdi::dbDrawMaskOnAll; if (_heversion >= 70 && findResource(MKID('SMAP'), ptr) == NULL) |