mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 07:11:49 +00:00
SCUMM: (SCUMM4-6) - fix actor turning direction
This is the same thing that already got fixed for v1-3. Turns out that the code for v4-6 is exactly the same.
This commit is contained in:
parent
c23d43bc16
commit
a25b068b6a
@ -1494,7 +1494,7 @@ int Actor::updateActorDirection(bool is_walking) {
|
||||
dir &= 1023;
|
||||
|
||||
if (shouldInterpolate) {
|
||||
if (_vm->_game.version <= 3) {
|
||||
if (_vm->_game.version <= 6) {
|
||||
static const uint8 tbl[] = { 0, 2, 2, 3, 2, 1, 2, 3, 0, 1, 2, 1, 0, 1, 0, 3 };
|
||||
dir = oldDirToNewDir(tbl[newDirToOldDir(dir) | (newDirToOldDir(_facing) << 2)]);
|
||||
} else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user