DIRECTOR: Build fix whilst determining correct parameters to pass to Lingo::call()

This commit is contained in:
stevenhoefel 2017-01-10 09:31:42 +11:00
parent 60f936d1f7
commit 82ae4e07ca
2 changed files with 2 additions and 2 deletions

View File

@ -856,7 +856,7 @@ void Lingo::c_call() {
g_lingo->call(name, nargs);
}
void Lingo::call(Common::String name, int entityId) {
void Lingo::call(Common::String name, int nargs) {
bool dropArgs = false;
Symbol *sym;

View File

@ -275,7 +275,7 @@ public:
static void c_le();
static void c_call();
void call(Common::String name, int entityId);
void call(Common::String name, int nargs);
static void c_procret();