diff options
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/actor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/actor.cpp b/scumm/actor.cpp index 1266f6820b..ba1c1b81ad 100644 --- a/scumm/actor.cpp +++ b/scumm/actor.cpp @@ -646,7 +646,7 @@ AdjustBoxResult Actor::adjustXYToBeInBox(int dstX, int dstY) { if (numBoxes < firstValidBox) return abr; - bestDist = 0xFFFF; + bestDist = (_vm->_version >= 7) ? 0x7FFFFFFF : 0xFFFF; if (_vm->_version <= 2) bestDist *= 8*2; // Adjust for the fact that we multiply x by 8 and y by 2 bestBox = kInvalidBox; |