mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-14 13:50:13 +00:00
Slight renaming
svn-id: r15796
This commit is contained in:
parent
e583efe1ad
commit
057cec5a05
@ -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);
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user