[Scummvm-cvs-logs] CVS: scummvm/scumm intern.h,2.130,2.131 script_v6he.cpp,2.4,2.5

Travis Howell kirben at users.sourceforge.net
Fri Feb 6 19:14:10 CET 2004


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

Modified Files:
	intern.h script_v6he.cpp 
Log Message:

Add stub


Index: intern.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/intern.h,v
retrieving revision 2.130
retrieving revision 2.131
diff -u -d -r2.130 -r2.131
--- intern.h	7 Feb 2004 02:52:27 -0000	2.130
+++ intern.h	7 Feb 2004 03:10:22 -0000	2.131
@@ -587,6 +587,7 @@
 	void o6_unknownE0();
 	void o6_unknownE1();
 	void o6_unknownE4();
+	void o6_seekFile();
 	void o6_localizeArray();
 	void o6_unknownFA();
 	void o6_unknownEA();

Index: script_v6he.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/script_v6he.cpp,v
retrieving revision 2.4
retrieving revision 2.5
diff -u -d -r2.4 -r2.5
--- script_v6he.cpp	7 Feb 2004 03:00:01 -0000	2.4
+++ script_v6he.cpp	7 Feb 2004 03:10:22 -0000	2.5
@@ -340,7 +340,7 @@
 		OPCODE(o6_invalid),
 		/* E8 */
 		OPCODE(o6_invalid),
-		OPCODE(o6_invalid),
+		OPCODE(o6_seekFile),
 		OPCODE(o6_unknownEA),
 		OPCODE(o6_invalid),
 		/* EC */
@@ -1138,6 +1138,26 @@
 	_scriptPointer += len + 1;
 }
 
+void ScummEngine_v6he::o6_seekFile() {
+	int a, b, c;
+	a = pop();
+	b = pop();
+	c = pop();
+
+	switch (a) {
+	case 1:
+		//seekWrapper(c, b, 0, 0);
+		break;
+	case 2:
+		//seekWrapper(c, b, ?, 1);
+		break;
+	default:
+		break;
+	}
+
+	warning("stub o6_seekFile(%d, %d, %d)", a, b, c);
+}
+
 void ScummEngine_v6he::o6_unknownEA() {
 	int edi, esi, eax;
 	edi = pop();





More information about the Scummvm-git-logs mailing list