[Scummvm-cvs-logs] CVS: scummvm/scumm string.cpp,1.254,1.255

Travis Howell kirben at users.sourceforge.net
Sat Sep 25 02:55:04 CEST 2004


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

Modified Files:
	string.cpp 
Log Message:

Limit to HE games


Index: string.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/string.cpp,v
retrieving revision 1.254
retrieving revision 1.255
diff -u -d -r1.254 -r1.255
--- string.cpp	19 Sep 2004 12:22:47 -0000	1.254
+++ string.cpp	25 Sep 2004 09:50:41 -0000	1.255
@@ -434,7 +434,7 @@
 	}
 
 	for (i = 0; (c = buf[i++]) != 0;) {
-		if (c == code) {
+		if (_heversion >= 72 && c == code) {
 			c = buf[i++];
 			switch (c) {
 			case 110:





More information about the Scummvm-git-logs mailing list