[Scummvm-cvs-logs] CVS: scummvm/scumm script_v1.cpp,1.17,1.18

James Brown ender at users.sourceforge.net
Sat Nov 9 08:57:02 CET 2002


Update of /cvsroot/scummvm/scummvm/scumm
In directory usw-pr-cvs1:/tmp/cvs-serv2825/scumm

Modified Files:
	script_v1.cpp 
Log Message:
Apart from broke actor costumes, and the random catacomb crashes - 
Indy3-256 is completable. (Will not be labeled as such in the 
compatability table until the catacomb crashes are fixed!)


Index: script_v1.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/script_v1.cpp,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- script_v1.cpp	6 Nov 2002 16:44:57 -0000	1.17
+++ script_v1.cpp	9 Nov 2002 16:56:20 -0000	1.18
@@ -974,9 +974,16 @@
 	int a;
 	getResultPos();
 
-	if (_gameId == GID_INDY3_256)
+	if (_gameId == GID_INDY3_256) {
 		a = getVarOrDirectByte(0x80);
-	else
+
+		// Indy3 hack to cheat the 'Leap of Faith' grail test
+		// This test is so damn annoying, I'm leaving this in.
+		if (_roomResource == 85) {
+			setResult(94);
+			return;
+		}
+	} else
 		a = getVarOrDirectWord(0x80);
 
 	setResult(getObjY(a));





More information about the Scummvm-git-logs mailing list