aboutsummaryrefslogtreecommitdiff
path: root/saga
diff options
context:
space:
mode:
authorTorbjörn Andersson2005-06-15 14:42:40 +0000
committerTorbjörn Andersson2005-06-15 14:42:40 +0000
commit1386108adb32b13269d4f67a15c4a16b2bffb3bd (patch)
tree2d165274f002a4d14a2311e7d40cf344af9d27b3 /saga
parent620a8c5822d3688da5df046895a04eb35ef147a5 (diff)
downloadscummvm-rg350-1386108adb32b13269d4f67a15c4a16b2bffb3bd.tar.gz
scummvm-rg350-1386108adb32b13269d4f67a15c4a16b2bffb3bd.tar.bz2
scummvm-rg350-1386108adb32b13269d4f67a15c4a16b2bffb3bd.zip
Corrected error message.
svn-id: r18395
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++];
}