[Scummvm-cvs-logs] CVS: scummvm/saga script.h,1.96,1.97 sfuncs.cpp,1.142,1.143 sthread.cpp,1.89,1.90

Andrew Kurushin h00ligan at users.sourceforge.net
Sun Jul 24 06:42:49 CEST 2005


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

Modified Files:
	script.h sfuncs.cpp sthread.cpp 
Log Message:
assign sf94 name

Index: script.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/saga/script.h,v
retrieving revision 1.96
retrieving revision 1.97
diff -u -d -r1.96 -r1.97
--- script.h	21 Jul 2005 22:13:05 -0000	1.96
+++ script.h	24 Jul 2005 13:41:49 -0000	1.97
@@ -533,7 +533,7 @@
 	void sfVstopFX(SCRIPTFUNC_PARAMS);
 	void sfVstopLoopedFX(SCRIPTFUNC_PARAMS);
 	void sfDemoIsInteractive(SCRIPTFUNC_PARAMS);
-	void sf94(SCRIPTFUNC_PARAMS);
+	void sfVsetTrack(SCRIPTFUNC_PARAMS);
 	void sfDebugShowData(SCRIPTFUNC_PARAMS);
 	void SF_stub(SCRIPTFUNC_PARAMS);
 	void sfNull(SCRIPTFUNC_PARAMS);

Index: sfuncs.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/saga/sfuncs.cpp,v
retrieving revision 1.142
retrieving revision 1.143
diff -u -d -r1.142 -r1.143
--- sfuncs.cpp	21 Jul 2005 22:13:05 -0000	1.142
+++ sfuncs.cpp	24 Jul 2005 13:41:49 -0000	1.143
@@ -229,7 +229,7 @@
 		OPCODE(SF_stub),
 		OPCODE(sfNull),
 		OPCODE(sfDemoIsInteractive),
-		OPCODE(sf94),
+		OPCODE(sfVsetTrack),
 		OPCODE(SF_stub),
 		OPCODE(SF_stub),
 		OPCODE(SF_stub),
@@ -2027,11 +2027,11 @@
 	thread->_returnValue = 0;
 }
 
-void Script::sf94(SCRIPTFUNC_PARAMS) {
+void Script::sfVsetTrack(SCRIPTFUNC_PARAMS) {
 	for (int i = 0; i < nArgs; i++)
 		thread->pop();
 
-	debug(0, "STUB: sf94(), %d args", nArgs);
+	debug(0, "STUB: sfVsetTrack(), %d args", nArgs);
 }
 
 void Script::sfDebugShowData(SCRIPTFUNC_PARAMS) {

Index: sthread.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/saga/sthread.cpp,v
retrieving revision 1.89
retrieving revision 1.90
diff -u -d -r1.89 -r1.90
--- sthread.cpp	21 Jul 2005 22:13:06 -0000	1.89
+++ sthread.cpp	24 Jul 2005 13:41:49 -0000	1.90
@@ -331,7 +331,7 @@
 				return true;
 			}
 			if (scriptFunction == &Saga::Script::sfScriptGotoScene ||
-				scriptFunction == &Saga::Script::sf94) {
+				scriptFunction == &Saga::Script::sfVsetTrack) {
 				return true; // cause abortAllThreads called and _this_ thread destroyed
 			}
 





More information about the Scummvm-git-logs mailing list