diff options
author | Vincent Hamm | 2002-05-22 12:35:17 +0000 |
---|---|---|
committer | Vincent Hamm | 2002-05-22 12:35:17 +0000 |
commit | a41fd620cb6ef968994fc7e4422e23725fbf2d17 (patch) | |
tree | 28e72c2709a11e7a4bfad2ad0444dca20e5fdf4c | |
parent | 22f5be69f686caa6b050cc36759d42b19a9dc7cb (diff) | |
download | scummvm-rg350-a41fd620cb6ef968994fc7e4422e23725fbf2d17.tar.gz scummvm-rg350-a41fd620cb6ef968994fc7e4422e23725fbf2d17.tar.bz2 scummvm-rg350-a41fd620cb6ef968994fc7e4422e23725fbf2d17.zip |
Reenabled the 1024 flag for direction interpolation
svn-id: r4372
-rw-r--r-- | actor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -229,7 +229,7 @@ int Actor::remapDirection(int dir) } } /* Or 1024 in to signal direction interpolation should be done */ - return Scumm::normalizeAngle(dir)/* | 1024*/; + return Scumm::normalizeAngle(dir) | 1024; } int Actor::updateActorDirection() |