DIRECTOR: LINGO: Don't push void on undefined cmds

This commit is contained in:
djsrv 2020-07-22 14:11:54 -04:00
parent 0044225060
commit 542c702d8f

View File

@ -1501,7 +1501,8 @@ void LC::call(const Symbol &funcSym, int nargs, bool allowRetVal) {
g_lingo->pop();
// Push dummy value
g_lingo->pushVoid();
if (allowRetVal)
g_lingo->pushVoid();
return;
}