[Scummvm-cvs-logs] CVS: scummvm/scumm boxes.cpp,1.49,1.50
Max Horn
fingolfin at users.sourceforge.net
Mon Jul 21 15:09:23 CEST 2003
Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1:/tmp/cvs-serv19896
Modified Files:
boxes.cpp
Log Message:
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)
Index: boxes.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/boxes.cpp,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -d -r1.49 -r1.50
--- boxes.cpp 21 Jul 2003 21:59:07 -0000 1.49
+++ boxes.cpp 21 Jul 2003 22:08:39 -0000 1.50
@@ -656,7 +656,7 @@
// 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++) {
More information about the Scummvm-git-logs
mailing list