diff options
author | Max Horn | 2003-09-11 22:12:24 +0000 |
---|---|---|
committer | Max Horn | 2003-09-11 22:12:24 +0000 |
commit | f21f830633556cc9fe0747f3a3339e4b49d482d1 (patch) | |
tree | 6190b017a10521e16cca08ec51e57cfe6c8c9d5f | |
parent | ff225c470cbd336c947e8e783ce6d13d94942794 (diff) | |
download | scummvm-rg350-f21f830633556cc9fe0747f3a3339e4b49d482d1.tar.gz scummvm-rg350-f21f830633556cc9fe0747f3a3339e4b49d482d1.tar.bz2 scummvm-rg350-f21f830633556cc9fe0747f3a3339e4b49d482d1.zip |
fix long standing bug in walkActorOld() (though I have no idea if it affects anything :-)
svn-id: r10180
-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 62422edbb2..f5fcd26d86 100644 --- a/scumm/actor.cpp +++ b/scumm/actor.cpp @@ -1489,7 +1489,7 @@ void Actor::walkActorOld() { if (calcMovementFactor(p3.x, p3.y)) return; - walkbox = walkdata.destbox; + setBox(walkdata.curbox); } while (1); moving |= MF_LAST_LEG; |