[Scummvm-cvs-logs] CVS: scummvm/scumm script_v80he.cpp,2.70,2.71

kirben kirben at users.sourceforge.net
Sat Jan 29 21:02:15 CET 2005


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

Modified Files:
	script_v80he.cpp 
Log Message:

HE100 difference


Index: script_v80he.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/script_v80he.cpp,v
retrieving revision 2.70
retrieving revision 2.71
diff -u -d -r2.70 -r2.71
--- script_v80he.cpp	1 Jan 2005 16:09:16 -0000	2.70
+++ script_v80he.cpp	30 Jan 2005 05:00:20 -0000	2.71
@@ -439,9 +439,11 @@
 	type = fetchScriptByte();
 
 	switch (type) {
+	case 43: // HE 100
 	case 6: // number
 		push(0);
 		break;
+	case 77: // HE 100
 	case 7: // string
 		writeVar(0, 0);
 		defineArray(0, kStringArray, 0, 0, 0, 0);
@@ -463,6 +465,7 @@
 	type = fetchScriptByte();
 
 	switch (type) {
+	case 43: // HE 100
 	case 6: // number
 		value = pop();
 		copyScriptString(section);
@@ -470,6 +473,7 @@
 		copyScriptString(filename);
 		debug(1,"o80_writeConfigFile: Filename %s Section %s Name %s Value %d", filename, section, name, value);
 		break;
+	case 77: // HE 100
 	case 7: // string
 		copyScriptString(string);
 		copyScriptString(section);





More information about the Scummvm-git-logs mailing list