aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scumm/boxes.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/boxes.cpp b/scumm/boxes.cpp
index d56118a5d8..98ec1b5288 100644
--- a/scumm/boxes.cpp
+++ b/scumm/boxes.cpp
@@ -235,7 +235,7 @@ Box *Scumm::getBoxBaseAddr(int box) {
// we shouldn't subtract 1 from ptr[0] when performing the check?
// this also seems to be incorrect for atari st demo of zak
// and assumingly other v2 games
- if ((_gameId != GID_MONKEY_EGA) && !(_features & GF_AFTER_V2))
+ if (_gameId != GID_MONKEY_EGA)
checkRange(ptr[0] - 1, 0, box, "Illegal box %d");
if (_features & GF_AFTER_V2)