aboutsummaryrefslogtreecommitdiff
path: root/engines/director/lingo/lingo-bytecode.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2020-01-01 02:38:58 +0100
committerEugene Sandulenko2020-01-01 02:38:58 +0100
commitbedd04f3965c30fbd30aca0737969d132db797a6 (patch)
treeb727c8efab43f1ce03dd40f1789bd9803b95cfaa /engines/director/lingo/lingo-bytecode.cpp
parentd0d7d0899f5878341275d181ff5e89cbfc29bb5e (diff)
downloadscummvm-rg350-bedd04f3965c30fbd30aca0737969d132db797a6.tar.gz
scummvm-rg350-bedd04f3965c30fbd30aca0737969d132db797a6.tar.bz2
scummvm-rg350-bedd04f3965c30fbd30aca0737969d132db797a6.zip
DIRECTOR: LINGO: Replace LC class with namespace
Diffstat (limited to 'engines/director/lingo/lingo-bytecode.cpp')
-rw-r--r--engines/director/lingo/lingo-bytecode.cpp2
1 files changed, 1 insertions, 1 deletions
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());