aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
}
}