[Scummvm-cvs-logs] CVS: scummvm/scumm string.cpp,1.145,1.146

Max Horn fingolfin at users.sourceforge.net
Sun Jul 13 13:04:19 CEST 2003


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

Modified Files:
	string.cpp 
Log Message:
fix for bug #770344 (INDY3EGA: Amiga - Biff's name not shown in fight); this fix is not only needed for IndyEGA, but also for Loom (according to disassembly; I am guessing that it might be needed for all 'V3' (in our internal notation) games, but that remains to be verified

Index: string.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/string.cpp,v
retrieving revision 1.145
retrieving revision 1.146
diff -u -d -r1.145 -r1.146
--- string.cpp	13 Jul 2003 16:22:17 -0000	1.145
+++ string.cpp	13 Jul 2003 20:03:18 -0000	1.146
@@ -639,7 +639,7 @@
 void Scumm::addStringToStack(int var) {
 	byte *ptr;
 
-	if (_version >= 6 || _gameId == GID_INDY3_256)
+	if (_version == 3 || _version >= 6)
 		var = readVar(var);
 
 	if (var) {





More information about the Scummvm-git-logs mailing list