aboutsummaryrefslogtreecommitdiff
path: root/saga/sfuncs.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2005-07-25 02:38:43 +0000
committerEugene Sandulenko2005-07-25 02:38:43 +0000
commite8c1f6d1f1d89f350e570cb519202f2a866d7819 (patch)
treef9053028b23e2987c834c400aa1b3433bac212f3 /saga/sfuncs.cpp
parentf773d76c5452502a1b9ed4aaa3eaee4d09d6fc43 (diff)
downloadscummvm-rg350-e8c1f6d1f1d89f350e570cb519202f2a866d7819.tar.gz
scummvm-rg350-e8c1f6d1f1d89f350e570cb519202f2a866d7819.tar.bz2
scummvm-rg350-e8c1f6d1f1d89f350e570cb519202f2a866d7819.zip
More IHNM differences
svn-id: r18582
Diffstat (limited to 'saga/sfuncs.cpp')
-rw-r--r--saga/sfuncs.cpp16
1 files changed, 14 insertions, 2 deletions
diff --git a/saga/sfuncs.cpp b/saga/sfuncs.cpp
index a309331ab0..757e27011d 100644
--- a/saga/sfuncs.cpp
+++ b/saga/sfuncs.cpp
@@ -183,8 +183,8 @@ static const ScriptFunctionDescription IHNMscriptFunctionsList[IHNM_SCRIPT_FUNCT
OPCODE(sfScriptWalkRelative),
OPCODE(sfScriptMoveRelative),
OPCODE(sfSimulSpeech2),
- OPCODE(sfPlacard),
- OPCODE(sfPlacardOff),
+ OPCODE(sfPsychicProfile),
+ OPCODE(sfPsychicProfileOff),
OPCODE(sfSetProtagState),
OPCODE(sfResumeBgdAnim),
OPCODE(sfThrowActor),
@@ -1466,6 +1466,18 @@ void Script::sfPlacardOff(SCRIPTFUNC_PARAMS) {
}
+void Script::sfPsychicProfile(SCRIPTFUNC_PARAMS) {
+ for (int i = 0; i < nArgs; i++)
+ thread->pop();
+ warning("STUB: sfPsychicProfile()");
+}
+
+void Script::sfPsychicProfileOff(SCRIPTFUNC_PARAMS) {
+ for (int i = 0; i < nArgs; i++)
+ thread->pop();
+ warning("STUB: sfPsychicProfileOff()");
+}
+
// Script function #50 (0x32)
void Script::sfSetProtagState(SCRIPTFUNC_PARAMS) {
int protagState = thread->pop();