aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--saga/sfuncs.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/saga/sfuncs.cpp b/saga/sfuncs.cpp
index 5068456610..58f374033a 100644
--- a/saga/sfuncs.cpp
+++ b/saga/sfuncs.cpp
@@ -129,11 +129,11 @@ void Script::setupScriptFuncList(void) {
}
// Script function #0 (0x00)
+// Print a debugging message
int Script::SF_putString(SCRIPTFUNC_PARAMS) {
- for (int i = 0; i < nArgs; i++)
- thread->pop();
-
- debug(1, "stub: SF_putString(), %d args", nArgs);
+ SDataWord_T param = thread->pop();
+
+ debug(1, currentScript()->diag->str[param]);
return SUCCESS;
}