[Scummvm-cvs-logs] CVS: scummvm/scumm intern.h,2.226,2.227 script_v72he.cpp,2.56,2.57 script_v80he.cpp,2.4,2.5 script_v90he.cpp,2.10,2.11

Travis Howell kirben at users.sourceforge.net
Tue Sep 7 02:26:02 CEST 2004


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

Modified Files:
	intern.h script_v72he.cpp script_v80he.cpp script_v90he.cpp 
Log Message:

Correct opcode


Index: intern.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/intern.h,v
retrieving revision 2.226
retrieving revision 2.227
diff -u -d -r2.226 -r2.227
--- intern.h	7 Sep 2004 03:42:15 -0000	2.226
+++ intern.h	7 Sep 2004 09:25:36 -0000	2.227
@@ -747,7 +747,7 @@
 	void o72_unknownED();
 	void o72_unknownEF();
 	void o72_unknownF1();
-	void o72_unknownF2();
+	void o72_checkGlobQueue();
 	void o72_readINI();
 	void o72_writeINI();
 	void o72_unknownF4();

Index: script_v72he.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/script_v72he.cpp,v
retrieving revision 2.56
retrieving revision 2.57
diff -u -d -r2.56 -r2.57
--- script_v72he.cpp	6 Sep 2004 02:54:28 -0000	2.56
+++ script_v72he.cpp	7 Sep 2004 09:25:37 -0000	2.57
@@ -347,7 +347,7 @@
 		/* F0 */
 		OPCODE(o6_invalid),
 		OPCODE(o72_unknownF1),
-		OPCODE(o72_unknownF2),
+		OPCODE(o72_checkGlobQueue),
 		OPCODE(o72_readINI),
 		/* F4 */
 		OPCODE(o72_writeINI),
@@ -1700,11 +1700,12 @@
 	push(-1);
 }
 
-void ScummEngine_v72he::o72_unknownF2() {
-	int a = pop();
-	int b = pop();
-	debug(1,"o7_unknownF2 stub (%d, %d)", b, a);
-	push(-1);
+void ScummEngine_v72he::o72_checkGlobQueue() {
+	int subOp = fetchScriptByte();
+	int idx = pop();
+
+	debug(1,"o72_checkGlobQueue stub (%d, %d)", subOp, idx);
+	push(100);
 }
 
 void ScummEngine_v72he::o72_readINI() {

Index: script_v80he.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/script_v80he.cpp,v
retrieving revision 2.4
retrieving revision 2.5
diff -u -d -r2.4 -r2.5
--- script_v80he.cpp	6 Sep 2004 03:26:47 -0000	2.4
+++ script_v80he.cpp	7 Sep 2004 09:25:37 -0000	2.5
@@ -347,7 +347,7 @@
 		/* F0 */
 		OPCODE(o6_invalid),
 		OPCODE(o72_unknownF1),
-		OPCODE(o72_unknownF2),
+		OPCODE(o72_checkGlobQueue),
 		OPCODE(o72_readINI),
 		/* F4 */
 		OPCODE(o72_writeINI),

Index: script_v90he.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/script_v90he.cpp,v
retrieving revision 2.10
retrieving revision 2.11
diff -u -d -r2.10 -r2.11
--- script_v90he.cpp	7 Sep 2004 03:42:15 -0000	2.10
+++ script_v90he.cpp	7 Sep 2004 09:25:37 -0000	2.11
@@ -347,7 +347,7 @@
 		/* F0 */
 		OPCODE(o6_invalid),
 		OPCODE(o72_unknownF1),
-		OPCODE(o72_unknownF2),
+		OPCODE(o72_checkGlobQueue),
 		OPCODE(o72_readINI),
 		/* F4 */
 		OPCODE(o72_writeINI),





More information about the Scummvm-git-logs mailing list