[Scummvm-cvs-logs] CVS: scummvm/scumm script_v6.cpp,1.374,1.375

Travis Howell kirben at users.sourceforge.net
Sun Aug 8 03:05:01 CEST 2004


Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19362/scumm

Modified Files:
	script_v6.cpp 
Log Message:

Added suggested hack for bug #556558, which was bug in original game.


Index: script_v6.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/script_v6.cpp,v
retrieving revision 1.374
retrieving revision 1.375
diff -u -d -r1.374 -r1.375
--- script_v6.cpp	7 Aug 2004 11:52:11 -0000	1.374
+++ script_v6.cpp	8 Aug 2004 10:03:55 -0000	1.375
@@ -816,6 +816,14 @@
 	script = pop();
 	flags = pop();
 	
+	// HACK bug #556558: At Dino Bungee National Memorial, the buttons for the Wally 
+	// and Rex dinosaurs will always restart their speech, instead of stopping and 
+	// starting their speech. This was a script bug in the original game.
+	if (_gameId == GID_SAMNMAX && _roomResource == 59 &&
+		vm.slot[_currentScript].number == 201 && script == 48) {
+		o6_breakHere();
+	}
+
 	// WORKAROUND bug #903223: In Puerto Pollo, if you have Guybrush examine
 	// the church clock, he'll read out the current time. Nice touch, only that
 	// it sounds crap in the german version (and maybe others, too). It seems





More information about the Scummvm-git-logs mailing list