[Scummvm-cvs-logs] CVS: scummvm/scumm boxes.cpp,1.50,1.51

Max Horn fingolfin at users.sourceforge.net
Mon Jul 21 15:12:27 CEST 2003


Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1:/tmp/cvs-serv20303

Modified Files:
	boxes.cpp 
Log Message:
fixing bug #774783 for the VGA version, too - and I bet the FmTowns version will need this fix, too

Index: boxes.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/boxes.cpp,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -d -r1.50 -r1.51
--- boxes.cpp	21 Jul 2003 22:08:39 -0000	1.50
+++ boxes.cpp	21 Jul 2003 22:11:33 -0000	1.51
@@ -655,7 +655,9 @@
 	// 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'





More information about the Scummvm-git-logs mailing list