aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scumm/actor.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/scumm/actor.cpp b/scumm/actor.cpp
index beb1178f67..a1b4eb6da2 100644
--- a/scumm/actor.cpp
+++ b/scumm/actor.cpp
@@ -622,7 +622,8 @@ AdjustBoxResult Actor::adjustXYToBeInBox(int dstX, int dstY, int pathfrom)
best = (uint) 0xFFFF;
b = 0;
- if (!(_vm->_features & GF_OLD256) || box)
+// FIXME - why was that check here? It apparently causes bug #643001
+// if (!(_vm->_features & GF_OLD256) || box)
for (j = box; j >= firstValidBox; j--) {
flags = _vm->getBoxFlags(j);