diff options
-rw-r--r-- | saga/script.h | 2 | ||||
-rw-r--r-- | saga/sfuncs.cpp | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/saga/script.h b/saga/script.h index 3cf7c37358..b45c64e6fd 100644 --- a/saga/script.h +++ b/saga/script.h @@ -298,7 +298,7 @@ private: int SF_checkUserInterrupt(SCRIPTFUNC_PARAMS); int SF_walkRelative(SCRIPTFUNC_PARAMS); int SF_moveRelative(SCRIPTFUNC_PARAMS); - int SF_simulSPeech2(SCRIPTFUNC_PARAMS); + int SF_simulSpeech2(SCRIPTFUNC_PARAMS); int SF_placard(SCRIPTFUNC_PARAMS); int SF_placardOff(SCRIPTFUNC_PARAMS); int SF_setProtagState(SCRIPTFUNC_PARAMS); diff --git a/saga/sfuncs.cpp b/saga/sfuncs.cpp index ebc02ddc7a..1963444a4e 100644 --- a/saga/sfuncs.cpp +++ b/saga/sfuncs.cpp @@ -93,7 +93,7 @@ void Script::setupScriptFuncList(void) { OPCODE(SF_checkUserInterrupt), OPCODE(SF_walkRelative), OPCODE(SF_moveRelative), - OPCODE(SF_simulSPeech2), + OPCODE(SF_simulSpeech2), OPCODE(SF_placard), OPCODE(SF_placardOff), OPCODE(SF_setProtagState), @@ -874,11 +874,11 @@ int Script::SF_moveRelative(SCRIPTFUNC_PARAMS) { } // Script function #47 (0x2F) -int Script::SF_simulSPeech2(SCRIPTFUNC_PARAMS) { +int Script::SF_simulSpeech2(SCRIPTFUNC_PARAMS) { for (int i = 0; i < nArgs; i++) thread->pop(); - debug(1, "stub: SF_simulSPeech2(), %d args", nArgs); + debug(1, "stub: SF_simulSpeech2(), %d args", nArgs); return SUCCESS; } |