aboutsummaryrefslogtreecommitdiff
path: root/saga
diff options
context:
space:
mode:
Diffstat (limited to 'saga')
-rw-r--r--saga/script.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/saga/script.h b/saga/script.h
index d947bf45c9..722052e32c 100644
--- a/saga/script.h
+++ b/saga/script.h
@@ -302,7 +302,7 @@ public:
int16 pop() {
if (_stackTopIndex >= _stackSize) {
- error("ScriptThread::push() stack underflow");
+ error("ScriptThread::pop() stack underflow");
}
return (int16)_stackBuf[_stackTopIndex++];
}