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 e8c0c71b14..15027e3093 100644
--- a/scumm/actor.cpp
+++ b/scumm/actor.cpp
@@ -258,7 +258,7 @@ int Actor::remapDirection(int dir, bool is_walking) {
}
}
// OR 1024 in to signal direction interpolation should be done
- return normalizeAngle(dir);
+ return normalizeAngle(dir) | 1024;
}
int Actor::updateActorDirection(bool is_walking) {