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:
athrxx 2023-08-25 13:36:08 +02:00
parent c23d43bc16
commit a25b068b6a

View File

@ -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 {