diff options
-rw-r--r-- | engines/scumm/actor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/scumm/actor.cpp b/engines/scumm/actor.cpp index b8252adda7..f17fc910ae 100644 --- a/engines/scumm/actor.cpp +++ b/engines/scumm/actor.cpp @@ -423,7 +423,7 @@ int Actor::actorWalkStep() { _pos = _actorPos; - if (_pos == _walkdata.next) { + if (_vm->_game.version >= 4 && _vm->_game.version <= 6 && _pos == _walkdata.next) { _moving &= ~MF_IN_LEG; return 0; } |