[Scummvm-cvs-logs] CVS: scummvm/scumm intern.h,2.17,2.18 script_v8.cpp,2.38,2.39

Pawel Kolodziejski aquadran at users.sourceforge.net
Wed Dec 25 10:48:02 CET 2002


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

Modified Files:
	intern.h script_v8.cpp 
Log Message:
chenged opcode o8_breakHerVar to o6_delayFrames

Index: intern.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/intern.h,v
retrieving revision 2.17
retrieving revision 2.18
diff -u -d -r2.17 -r2.18
--- intern.h	25 Dec 2002 14:46:38 -0000	2.17
+++ intern.h	25 Dec 2002 18:47:46 -0000	2.18
@@ -412,7 +412,6 @@
 
 	/* Version 8 script opcodes */
 	void o8_mod();
-	void o8_breakHereVar();
 	void o8_wait();
 
 	void o8_dim();

Index: script_v8.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/script_v8.cpp,v
retrieving revision 2.38
retrieving revision 2.39
diff -u -d -r2.38 -r2.39
--- script_v8.cpp	25 Dec 2002 17:10:34 -0000	2.38
+++ script_v8.cpp	25 Dec 2002 18:47:46 -0000	2.39
@@ -186,7 +186,7 @@
 		OPCODE(o6_jump),
 		OPCODE(o6_breakHere),
 		/* 68 */
-		OPCODE(o8_breakHereVar),
+		OPCODE(o6_delayFrames),
 		OPCODE(o8_wait),
 		OPCODE(o6_delay),			// FIXME - is the delay period right?
 		OPCODE(o6_delayLonger),		// FIXME - is the delay period right?
@@ -579,13 +579,6 @@
 {
 	int a = pop();
 	push(pop() % a);
-}
-
-void Scumm_v8::o8_breakHereVar()
-{
-	int var = pop();
-	warning("o8_breakHereVar(%d) NYI", var);
-	o6_breakHere();
 }
 
 void Scumm_v8::o8_wait()





More information about the Scummvm-git-logs mailing list