mirror of
https://github.com/scummvm/scummvm.git
synced 2026-06-20 05:45:29 +00:00
Fix for bug #774783 - INDY3: problems in Berlin with Hitler (submitted after talking with Fingolfin)
svn-id: r27009
This commit is contained in:
@@ -796,6 +796,11 @@ void Actor::setDirection(int direction) {
|
||||
int i;
|
||||
uint16 vald;
|
||||
|
||||
// HACK to fix bug #774783
|
||||
// If Hitler's direction is being set to anything other than 90, set it to 90
|
||||
if ((_vm->_game.id == GID_INDY3) && _vm->_roomResource == 46 && _number == 9 && direction != 90)
|
||||
direction = 90;
|
||||
|
||||
// Do nothing if actor is already facing in the given direction
|
||||
if (_facing == direction)
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user