aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--saga/sfuncs.cpp12
1 files changed, 7 insertions, 5 deletions
diff --git a/saga/sfuncs.cpp b/saga/sfuncs.cpp
index 0d413ac18b..ebc02ddc7a 100644
--- a/saga/sfuncs.cpp
+++ b/saga/sfuncs.cpp
@@ -233,12 +233,14 @@ int Script::SF_actorWalkTo(SCRIPTFUNC_PARAMS) {
// Script function #7 (0x07)
int Script::SF_doAction(SCRIPTFUNC_PARAMS) {
- SDataWord_T param1 = thread->pop();
- SDataWord_T param2 = thread->pop();
- SDataWord_T param3 = thread->pop();
- SDataWord_T param4 = thread->pop();
+ SDataWord_T actor_parm = thread->pop();
+ SDataWord_T action_parm = thread->pop();
+ SDataWord_T obj_parm = thread->pop();
+ SDataWord_T withobj_parm = thread->pop();
+
+ // The parameters correspond with the thread variables.
- debug(1, "stub: SF_doAction(%d, %d, %d, %d)", param1, param2, param3, param4);
+ debug(1, "stub: SF_doAction(%d, %d, %d, %d)", actor_parm, action_parm, obj_parm, withobj_parm);
return SUCCESS;
}