[Scummvm-cvs-logs] CVS: scummvm/scumm script_v5.cpp,1.102,1.103

Max Horn fingolfin at users.sourceforge.net
Mon May 26 07:44:02 CEST 2003


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

Modified Files:
	script_v5.cpp 
Log Message:
work around bug #743615

Index: script_v5.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/script_v5.cpp,v
retrieving revision 1.102
retrieving revision 1.103
diff -u -d -r1.102 -r1.103
--- script_v5.cpp	24 May 2003 16:11:47 -0000	1.102
+++ script_v5.cpp	26 May 2003 14:43:02 -0000	1.103
@@ -2311,6 +2311,15 @@
 		warning("Bypassing Indy4 bug");
 		return;
 	}
+	
+	if (_gameId == GID_LOOM256 && nr == 1 && nr2 == 0 &&
+		dist == 255 && vm.slot[_currentScript].number == 98) {
+		// FIXME: Work around bug #743615. LoomCD script 98
+		// contains this: walkActorToActor(1,0,255)
+		// Once more this is either a script bug, or there is
+		// some hidden meaning in this odd walk request?
+		return;
+	}
 
 	a = derefActor(nr, "o5_walkActorToActor");
 	if (!a->isInCurrentRoom())





More information about the Scummvm-git-logs mailing list