[Scummvm-cvs-logs] CVS: scummvm/scumm scumm.cpp,1.92,1.93

Travis Howell kirben at users.sourceforge.net
Tue Jul 20 04:55:04 CEST 2004


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

Modified Files:
	scumm.cpp 
Log Message:

Correct version key in HE 7.0+ games.


Index: scumm.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/scumm.cpp,v
retrieving revision 1.92
retrieving revision 1.93
diff -u -d -r1.92 -r1.93
--- scumm.cpp	20 Jul 2004 11:50:44 -0000	1.92
+++ scumm.cpp	20 Jul 2004 11:54:42 -0000	1.93
@@ -1064,8 +1064,10 @@
 	scummInit();
 
 	if (_version > 2) {
-		if (_version < 7 && _heversion <= 71)
+		if (_version < 7 && _heversion <= 60)
 			VAR(VAR_VERSION) = 21;
+		else if (_heversion >= 70)
+			VAR(VAR_VERSION) = 22;
 	
 		if (!((_features & GF_MACINTOSH) && (_version == 3)) && !(_features & GF_FMTOWNS)) {
 			// This is NOT for the Mac version of Indy3/Loom





More information about the Scummvm-git-logs mailing list