diff options
author | Max Horn | 2003-05-08 10:48:29 +0000 |
---|---|---|
committer | Max Horn | 2003-05-08 10:48:29 +0000 |
commit | 86e28c807e1375d6e9b5a1b6995a870200fb2913 (patch) | |
tree | f10e8909fc0bddb08a3f98af6e126fb8e45bfde8 /scumm | |
parent | 68f821c67d910a2662bc87b3648022dbd95c307c (diff) | |
download | scummvm-rg350-86e28c807e1375d6e9b5a1b6995a870200fb2913.tar.gz scummvm-rg350-86e28c807e1375d6e9b5a1b6995a870200fb2913.tar.bz2 scummvm-rg350-86e28c807e1375d6e9b5a1b6995a870200fb2913.zip |
oops that was an accidental change
svn-id: r7390
Diffstat (limited to 'scumm')
-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 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) { |