[Scummvm-cvs-logs] CVS: scummvm/scumm scumm.cpp,1.702,1.703

Max Horn fingolfin at users.sourceforge.net
Mon Jan 23 11:14:01 CET 2006


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

Modified Files:
	scumm.cpp 
Log Message:
At this point, we may not yet know the precise version of a game; so for those cases were it can vary (1-3 for Zak, 1-2 for MM, 3-4 for Loom etc.) we need to extend some of the version ranges slightly

Index: scumm.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/scumm.cpp,v
retrieving revision 1.702
retrieving revision 1.703
diff -u -d -r1.702 -r1.703
--- scumm.cpp	22 Jan 2006 13:32:39 -0000	1.702
+++ scumm.cpp	23 Jan 2006 19:13:05 -0000	1.703
@@ -2866,7 +2866,7 @@
 		strcpy(detectName, "00.LFL");
 		break;
 	case 1:
-		if (g->version < 4 || g->version > 5)
+		if (g->version < 3 || g->version > 5)
 			return false;
 		strcpy(detectName, "000.LFL");
 		break;





More information about the Scummvm-git-logs mailing list