aboutsummaryrefslogtreecommitdiff
path: root/scumm/actor.cpp
diff options
context:
space:
mode:
authorMax Horn2002-12-18 23:45:52 +0000
committerMax Horn2002-12-18 23:45:52 +0000
commite9cb26cacf63bccdbe9d3d4f7da0170a271c1dfd (patch)
tree907c89a64ed9689363f5cb39a73cf4b5c5f66805 /scumm/actor.cpp
parent2b3415212fa64a06d56323226de78d15dedb1b48 (diff)
downloadscummvm-rg350-e9cb26cacf63bccdbe9d3d4f7da0170a271c1dfd.tar.gz
scummvm-rg350-e9cb26cacf63bccdbe9d3d4f7da0170a271c1dfd.tar.bz2
scummvm-rg350-e9cb26cacf63bccdbe9d3d4f7da0170a271c1dfd.zip
fix for bug #655652
svn-id: r6023
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 f00afdbd82..6c125eed62 100644
--- a/scumm/actor.cpp
+++ b/scumm/actor.cpp
@@ -308,7 +308,7 @@ int Actor::actorWalkStep()
direction = updateActorDirection(true);
if (!(moving & MF_IN_LEG) || facing != direction) {
if (walkFrame != frame || facing != direction) {
- startWalkAnim(walkFrame == frame ? 2 : 1, direction);
+ startWalkAnim(1, direction);
}
moving |= MF_IN_LEG;
}