aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorMax Horn2003-06-30 10:22:04 +0000
committerMax Horn2003-06-30 10:22:04 +0000
commitc7fb2c9bbf3a2f4227fd667c694b8377b6dda1b2 (patch)
tree551af4389ceac39ada7d17bcde699eca9a4dc549 /scumm
parent7c8565fa65789576959e67d54e4032780dffc723 (diff)
downloadscummvm-rg350-c7fb2c9bbf3a2f4227fd667c694b8377b6dda1b2.tar.gz
scummvm-rg350-c7fb2c9bbf3a2f4227fd667c694b8377b6dda1b2.tar.bz2
scummvm-rg350-c7fb2c9bbf3a2f4227fd667c694b8377b6dda1b2.zip
fix for bug #743049; might cause regressions, but might also fix e.g. walk script issues
svn-id: r8673
Diffstat (limited to 'scumm')
-rw-r--r--scumm/actor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/actor.cpp b/scumm/actor.cpp
index ccf8ba29f1..51a27f30c1 100644
--- a/scumm/actor.cpp
+++ b/scumm/actor.cpp
@@ -730,7 +730,7 @@ void Actor::turnToDirection(int newdir) {
moving &= ~MF_TURN;
if (newdir != facing) {
- moving |= MF_TURN;
+ moving = MF_TURN;
newDirection = newdir;
}
}