DIRECTOR: LINGO: Fix copy/paste error

This commit is contained in:
Eugene Sandulenko 2020-04-18 16:07:21 +02:00
parent 5a9bc7b86a
commit 8878e11cc7

View File

@ -40,7 +40,7 @@
namespace Director {
#define ARGNUMCHECK(n) \
if (nargs != 1) { \
if (nargs != (n)) { \
warning("%s: expected %d argument%s, got %d", __FUNCTION__, (n), ((n) == 1 ? "" : "s"), nargs); \
g_lingo->dropStack(nargs); \
return; \