Apply patch 642171. Fixes some Loom and FOA bugs. Regression testing doesn't reveil any hangs

introduced, but watch out for minor actor movement regressions.

svn-id: r5689
This commit is contained in:
James Brown 2002-11-22 08:14:33 +00:00
parent a222ed17de
commit ea46bdabce

View File

@ -724,12 +724,8 @@ void Actor::turnToDirection(int newdir)
moving &= ~MF_TURN;
if (newdir != facing) {
moving = MF_TURN;
moving |= MF_TURN;
newDirection = newdir;
// FIXME - workaround for bug #558236
if (_vm->_gameId == GID_INDY4 && room == 39 && x == 617 && y == 125 && newdir == 180)
startAnimActor(standFrame);
}
}