diff options
Diffstat (limited to 'scumm/boxes.cpp')
-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 f4f6404577..13f25847e9 100644 --- a/scumm/boxes.cpp +++ b/scumm/boxes.cpp @@ -209,7 +209,7 @@ Box *Scumm::getBoxBaseAddr(int box) { return NULL; checkRange(ptr[0] - 1, 0, box, "Illegal box %d"); if (_features & GF_SMALL_HEADER) { - if (_features & GF_OLD256) + if (_features & GF_AFTER_V3) // GF_OLD256 or GF_AFTER_V3 ? return (Box *)(ptr + box * (SIZEOF_BOX - 2) + 1); else return (Box *)(ptr + box * SIZEOF_BOX + 1); |