From bedd04f3965c30fbd30aca0737969d132db797a6 Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Wed, 1 Jan 2020 02:38:58 +0100 Subject: DIRECTOR: LINGO: Replace LC class with namespace --- engines/director/lingo/lingo-bytecode.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/director/lingo/lingo-bytecode.cpp') diff --git a/engines/director/lingo/lingo-bytecode.cpp b/engines/director/lingo/lingo-bytecode.cpp index b6d3939d5f..c980d51082 100644 --- a/engines/director/lingo/lingo-bytecode.cpp +++ b/engines/director/lingo/lingo-bytecode.cpp @@ -214,7 +214,7 @@ void LC::cb_call() { Datum nargs = g_lingo->pop(); if ((nargs.type == ARGC) || (nargs.type == ARGCNORET)) { - g_lc->call(name, nargs.u.i); + LC::call(name, nargs.u.i); } else { warning("cb_call: first arg should be of type ARGC or ARGCNORET, not %s", nargs.type2str()); -- cgit v1.2.3