Commit FIXME to fix Largo bridge actor-direction bug

svn-id: r4124
This commit is contained in:
James Brown 2002-04-28 05:24:18 +00:00
parent e82ed1f4fd
commit 385c91733e
2 changed files with 16 additions and 0 deletions

View file

@ -985,6 +985,14 @@ void Scumm::o5_cutscene()
void Scumm::o5_endCutscene()
{
// FIXME MI2: wrong direction/levitation of G. on the bridge
if ((_gameId == GID_MONKEY2) && (_currentRoom == 7) &&
(vm.slot[_currentScript].number == 203)) {
Actor *a = derefActor(1);
if (a->x == 571)
a->facing = 90;
}
endCutscene();
}