diff options
author | Vincent Hamm | 2002-07-15 15:29:47 +0000 |
---|---|---|
committer | Vincent Hamm | 2002-07-15 15:29:47 +0000 |
commit | f0f63107a2e52dc4894afee0d030184c2dc037b1 (patch) | |
tree | 03099ea6cc1eb8e8baec59574aad3be7ac78c0b6 | |
parent | e6f6e5df8f97caf7ba2f009336efda4c760ed193 (diff) | |
download | scummvm-rg350-f0f63107a2e52dc4894afee0d030184c2dc037b1.tar.gz scummvm-rg350-f0f63107a2e52dc4894afee0d030184c2dc037b1.tar.bz2 scummvm-rg350-f0f63107a2e52dc4894afee0d030184c2dc037b1.zip |
fix an obscure typo
svn-id: r4552
-rw-r--r-- | actor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1220,7 +1220,7 @@ void Actor::startWalkActor(int destX, int destY, int dir) if (!isInCurrentRoom()) { x = abr.x; - x = abr.y; + y = abr.y; if (dir != -1) setActorDirection(dir); return; |