diff options
author | Max Horn | 2002-12-18 23:45:52 +0000 |
---|---|---|
committer | Max Horn | 2002-12-18 23:45:52 +0000 |
commit | e9cb26cacf63bccdbe9d3d4f7da0170a271c1dfd (patch) | |
tree | 907c89a64ed9689363f5cb39a73cf4b5c5f66805 /scumm | |
parent | 2b3415212fa64a06d56323226de78d15dedb1b48 (diff) | |
download | scummvm-rg350-e9cb26cacf63bccdbe9d3d4f7da0170a271c1dfd.tar.gz scummvm-rg350-e9cb26cacf63bccdbe9d3d4f7da0170a271c1dfd.tar.bz2 scummvm-rg350-e9cb26cacf63bccdbe9d3d4f7da0170a271c1dfd.zip |
fix for bug #655652
svn-id: r6023
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/actor.cpp | 2 |
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; } |