aboutsummaryrefslogtreecommitdiff
path: root/saga
diff options
context:
space:
mode:
authorAndrew Kurushin2005-07-24 13:41:49 +0000
committerAndrew Kurushin2005-07-24 13:41:49 +0000
commitfbc04b1ac7c699473195218e939614ec36a2ab8f (patch)
treed82bd8a1c81c91cd169ef1b282cfde154f73abaf /saga
parent1a5c8cd3dab869d90d96da67c6befd3acd3689dd (diff)
downloadscummvm-rg350-fbc04b1ac7c699473195218e939614ec36a2ab8f.tar.gz
scummvm-rg350-fbc04b1ac7c699473195218e939614ec36a2ab8f.tar.bz2
scummvm-rg350-fbc04b1ac7c699473195218e939614ec36a2ab8f.zip
assign sf94 name
svn-id: r18579
Diffstat (limited to 'saga')
-rw-r--r--saga/script.h2
-rw-r--r--saga/sfuncs.cpp6
-rw-r--r--saga/sthread.cpp2
3 files changed, 5 insertions, 5 deletions
diff --git a/saga/script.h b/saga/script.h
index a6b6b6c096..be1c3d611e 100644
--- a/saga/script.h
+++ b/saga/script.h
@@ -533,7 +533,7 @@ private:
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);
diff --git a/saga/sfuncs.cpp b/saga/sfuncs.cpp
index c439a0fbe4..a309331ab0 100644
--- a/saga/sfuncs.cpp
+++ b/saga/sfuncs.cpp
@@ -229,7 +229,7 @@ static const ScriptFunctionDescription IHNMscriptFunctionsList[IHNM_SCRIPT_FUNCT
OPCODE(SF_stub),
OPCODE(sfNull),
OPCODE(sfDemoIsInteractive),
- OPCODE(sf94),
+ OPCODE(sfVsetTrack),
OPCODE(SF_stub),
OPCODE(SF_stub),
OPCODE(SF_stub),
@@ -2027,11 +2027,11 @@ void Script::sfDemoIsInteractive(SCRIPTFUNC_PARAMS) {
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) {
diff --git a/saga/sthread.cpp b/saga/sthread.cpp
index 5cab14df9f..285032987c 100644
--- a/saga/sthread.cpp
+++ b/saga/sthread.cpp
@@ -331,7 +331,7 @@ bool Script::runThread(ScriptThread *thread, uint instructionLimit) {
return true;
}
if (scriptFunction == &Saga::Script::sfScriptGotoScene ||
- scriptFunction == &Saga::Script::sf94) {
+ scriptFunction == &Saga::Script::sfVsetTrack) {
return true; // cause abortAllThreads called and _this_ thread destroyed
}