aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/actor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/scumm/actor.cpp')
-rw-r--r--engines/scumm/actor.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/engines/scumm/actor.cpp b/engines/scumm/actor.cpp
index bb3617f8b2..5c314e844a 100644
--- a/engines/scumm/actor.cpp
+++ b/engines/scumm/actor.cpp
@@ -215,6 +215,12 @@ void ScummEngine::walkActors() {
void Actor::stopActorMoving() {
if (_walkScript)
_vm->stopScript(_walkScript);
+
+ // V0 Games will walk on the spot if the actor is stopped mid-walk
+ // So we must set the stand still frame
+ if (_vm->_game.version == 0)
+ startWalkAnim(3, -1);
+
_moving = 0;
}