mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-13 21:31:53 +00:00
fixing bug #774783 for the VGA version, too - and I bet the FmTowns version will need this fix, too
svn-id: r9112
This commit is contained in:
parent
743ad2aaa6
commit
9b02cb4cce
@ -655,7 +655,9 @@ int Scumm::getPathToDestBox(byte from, byte to) {
|
||||
// WORKAROUND #2: In addition to the above, we have to add this special
|
||||
// case to fix the scene in Indy3 where Indy meets Hitler in Berlin.
|
||||
// It's one of the places (or maybe even the only one?). See bug #770690
|
||||
if (_gameId == GID_INDY3 && _roomResource == 46 && from == 1 && to == 0)
|
||||
// and also bug #774783.
|
||||
if ((_gameId == GID_INDY3 || _gameId == GID_INDY3_TOWNS || _gameId == GID_INDY3_256)
|
||||
&& _roomResource == 46 && from == 1 && to == 0)
|
||||
return 1;
|
||||
|
||||
// Skip up to the matrix data for box 'from'
|
||||
|
Loading…
Reference in New Issue
Block a user