Skip to content

Commit

Permalink
DIRECTOR: Lingo: Fixed reference traces for VOID types
Browse files Browse the repository at this point in the history
  • Loading branch information
sev- committed Aug 11, 2016
1 parent 47c7e39 commit 5c09e6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/director/lingo/lingo-code.cpp
Expand Up @@ -253,7 +253,7 @@ void Lingo::c_eval() {
else if (d.u.sym->type == SYMBOL)
d.u.i = d.u.sym->u.i;
else if (d.u.sym->type == VOID)
d.u.s = new Common::String(*d.u.sym->name);
d.u.s = new Common::String(d.u.sym->name);
else
warning("c_eval: unhandled type: %s", d.type2str());

Expand Down

0 comments on commit 5c09e6f

Please sign in to comment.