aboutsummaryrefslogtreecommitdiff
path: root/saga/sfuncs.cpp
diff options
context:
space:
mode:
authorTorbjörn Andersson2004-11-12 15:32:42 +0000
committerTorbjörn Andersson2004-11-12 15:32:42 +0000
commit057cec5a05769e7f2afdc726d921089a60dba9a8 (patch)
tree3839b9b73195a07c5da07711c1591cde37c18c81 /saga/sfuncs.cpp
parente583efe1adb25dd112248b8cd86d6416758982ea (diff)
downloadscummvm-rg350-057cec5a05769e7f2afdc726d921089a60dba9a8.tar.gz
scummvm-rg350-057cec5a05769e7f2afdc726d921089a60dba9a8.tar.bz2
scummvm-rg350-057cec5a05769e7f2afdc726d921089a60dba9a8.zip
Slight renaming
svn-id: r15796
Diffstat (limited to 'saga/sfuncs.cpp')
-rw-r--r--saga/sfuncs.cpp6
1 files changed, 3 insertions, 3 deletions
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;
}