[Scummvm-cvs-logs] CVS: scummvm/scumm saveload.cpp,1.221,1.222 scumm.cpp,1.509,1.510

kirben kirben at users.sourceforge.net
Fri May 13 01:39:22 CEST 2005


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

Modified Files:
	saveload.cpp scumm.cpp 
Log Message:

Didn't need to break HE70 saved games after all.
activity/freddi (he71) only use 13 actors.



Index: saveload.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/saveload.cpp,v
retrieving revision 1.221
retrieving revision 1.222
diff -u -d -r1.221 -r1.222
--- saveload.cpp	13 May 2005 06:32:27 -0000	1.221
+++ saveload.cpp	13 May 2005 08:37:11 -0000	1.222
@@ -122,7 +122,7 @@
 	}
 
 	// We (deliberately) broke HE savegame compatibility at some point.
-	if (hdr.ver < VER(50) && _heversion >= 70) {
+	if (hdr.ver < VER(50) && _heversion >= 71) {
 		warning("Unsupported version of '%s'", filename);
 		delete in;
 		return false;

Index: scumm.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/scumm.cpp,v
retrieving revision 1.509
retrieving revision 1.510
diff -u -d -r1.509 -r1.510
--- scumm.cpp	13 May 2005 06:32:01 -0000	1.509
+++ scumm.cpp	13 May 2005 08:37:12 -0000	1.510
@@ -1479,7 +1479,7 @@
 		_numActors = 25;
 	else if (_heversion >= 80)
 		_numActors = 62;
-	else if (_heversion >= 70)
+	else if (_heversion >= 72)
 		_numActors = 30;
 	else 
 		_numActors = 13;





More information about the Scummvm-git-logs mailing list