[Scummvm-cvs-logs] CVS: tools descumm.cpp,1.74,1.75

Max Horn fingolfin at users.sourceforge.net
Thu Sep 11 04:13:26 CEST 2003


Update of /cvsroot/scummvm/tools
In directory sc8-pr-cvs1:/tmp/cvs-serv30008

Modified Files:
	descumm.cpp 
Log Message:
simplified check (we max out at script version 5 anyway)

Index: descumm.cpp
===================================================================
RCS file: /cvsroot/scummvm/tools/descumm.cpp,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -d -r1.74 -r1.75
--- descumm.cpp	10 Sep 2003 21:39:10 -0000	1.74
+++ descumm.cpp	11 Sep 2003 11:00:17 -0000	1.75
@@ -270,7 +270,7 @@
 			i < ARRAYSIZE(var_names2) && var_names2[i]) {
 		buf += sprintf(buf, var_names2[i]);
 		return buf;
-	} else if (scriptVersion >= 3 && scriptVersion <= 5 && 
+	} else if (scriptVersion >= 3 && 
 			i < ARRAYSIZE(var_names345) && var_names345[i]) {
 		buf += sprintf(buf, var_names345[i]);
 		return buf;





More information about the Scummvm-git-logs mailing list