mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-13 21:31:53 +00:00
really fix #774783 in IndyEGA (while the value '1' is not strictly correct, and in IndyVGA it is 0, and 0 is the logical value - this *has* to be 1 (and 1 is what the original returns, too, due to a bug)
svn-id: r9111
This commit is contained in:
parent
0a334bf269
commit
743ad2aaa6
@ -656,7 +656,7 @@ int Scumm::getPathToDestBox(byte from, byte to) {
|
||||
// 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)
|
||||
return 0;
|
||||
return 1;
|
||||
|
||||
// Skip up to the matrix data for box 'from'
|
||||
for (i = 0; i < from && boxm < end; i++) {
|
||||
|
Loading…
Reference in New Issue
Block a user