diff options
| -rw-r--r-- | scumm/boxes.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/scumm/boxes.cpp b/scumm/boxes.cpp index 98ec1b5288..24d9d625f7 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) +	if ((_gameId != GID_MONKEY_EGA) && (_gameId != GID_ZAK))  		checkRange(ptr[0] - 1, 0, box, "Illegal box %d");  	if (_features & GF_AFTER_V2) | 
