[Scummvm-cvs-logs] CVS: scummvm/scumm script_v6.cpp,1.115,1.116 intern.h,2.84,2.85

Jonathan Gray khalek at users.sourceforge.net
Fri May 16 18:58:06 CEST 2003


Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1:/tmp/cvs-serv24078

Modified Files:
	script_v6.cpp intern.h 
Log Message:
add stub for a hev7 op

Index: script_v6.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/script_v6.cpp,v
retrieving revision 1.115
retrieving revision 1.116
diff -u -d -r1.115 -r1.116
--- script_v6.cpp	15 May 2003 22:57:53 -0000	1.115
+++ script_v6.cpp	17 May 2003 01:57:54 -0000	1.116
@@ -354,7 +354,7 @@
 		/* F8 */
 		OPCODE(o6_invalid),
 		OPCODE(o6_invalid),
-		OPCODE(o6_invalid),
+		OPCODE(o6_unknownFA),
 		OPCODE(o6_invalid),
 		/* FC */
 		OPCODE(o6_invalid),
@@ -3003,6 +3003,15 @@
 void Scumm_v6::o6_unknownE4() {
 	warning("o6_unknownE4(%d) stub", pop());
 }
+
+void Scumm_v6::o6_unknownFA() {
+	int len, a = fetchScriptByte();
+	
+	len = resStrLen(_scriptPointer);
+	warning("stub o6_unknownFA(%d, \"%s\")", a, _scriptPointer);
+	_scriptPointer += len + 1;
+}
+
 void Scumm_v6::o6_localizeArray() {
 	warning("stub localizeArray(%d)", pop());
 }

Index: intern.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/intern.h,v
retrieving revision 2.84
retrieving revision 2.85
diff -u -d -r2.84 -r2.85
--- intern.h	16 May 2003 22:11:48 -0000	2.84
+++ intern.h	17 May 2003 01:57:54 -0000	2.85
@@ -490,6 +490,7 @@
 	void o6_unknownE4();
 	void o6_localizeArray();
 	void o6_shuffle();
+	void o6_unknownFA();
 
 	byte VAR_VIDEONAME;
 





More information about the Scummvm-git-logs mailing list