Skip to content

Commit

Permalink
DIRECTOR: Build fix whilst determining correct parameters to pass to …
Browse files Browse the repository at this point in the history
…Lingo::call()
  • Loading branch information
stevenhoefel committed Jan 9, 2017
1 parent 60f936d commit 82ae4e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion engines/director/lingo/lingo-code.cpp
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion engines/director/lingo/lingo.h
Expand Up @@ -275,7 +275,7 @@ class Lingo {
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();

Expand Down

0 comments on commit 82ae4e0

Please sign in to comment.