SCUMM: MM V0: Fix actors skipping between certain walk-boxes

This commit is contained in:
Robert Crossfield 2017-02-21 06:17:32 +11:00
parent 02ac724c66
commit 038b3b1789

View File

@ -937,7 +937,6 @@ L2A33:;
}
if ((_moving & 0x0F) == 3) {
L2C36:;
setTmpFromActor();
if (!_walkDirX) {
@ -980,7 +979,6 @@ L2C36:;
// 2ADA
if ((_moving & 0x0F) == 4) {
L2CA3:;
setTmpFromActor();
if (!_walkDirY) {
@ -1045,7 +1043,7 @@ L2CA3:;
directionUpdate();
animateActor(newDirToOldDir(_facing));
goto L2C36;
return;
} else {
// 2B39
@ -1064,7 +1062,7 @@ L2CA3:;
directionUpdate();
animateActor(newDirToOldDir(_facing));
goto L2CA3;
return;
}
}
}