Corrected error message.

svn-id: r18395
This commit is contained in:
Torbjörn Andersson 2005-06-15 14:42:40 +00:00
parent 620a8c5822
commit 1386108adb

View File

@ -302,7 +302,7 @@ public:
int16 pop() {
if (_stackTopIndex >= _stackSize) {
error("ScriptThread::push() stack underflow");
error("ScriptThread::pop() stack underflow");
}
return (int16)_stackBuf[_stackTopIndex++];
}