DIRECTOR: Lingo: Fixed argument count for factory methods

This commit is contained in:
Eugene Sandulenko 2017-01-11 19:07:37 +01:00
parent 895e02e1f6
commit 8eb8f9b0ef

View File

@ -227,6 +227,7 @@ void Lingo::define(Common::String &name, int start, int nargs, Common::String *p
sym->u.defn = new ScriptData(&(*_currentScript)[start], end - start + 1);
sym->nargs = nargs;
sym->maxArgs = nargs;
}
int Lingo::codeString(const char *str) {