aboutsummaryrefslogtreecommitdiff
path: root/scumm/actor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'scumm/actor.cpp')
-rw-r--r--scumm/actor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/actor.cpp b/scumm/actor.cpp
index 8b6f0b5d9f..9efd80aa75 100644
--- a/scumm/actor.cpp
+++ b/scumm/actor.cpp
@@ -1292,7 +1292,7 @@ void Actor::startWalkActor(int destX, int destY, int dir) {
if (!isInCurrentRoom()) {
_pos.x = abr.x;
_pos.y = abr.y;
- if (dir != -1)
+ if (!(_vm->_version == 6 && ignoreTurns) && dir != -1)
setDirection(dir);
return;
}