diff options
author | Eugene Sandulenko | 2016-08-11 08:28:39 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2016-08-11 08:51:00 +0200 |
commit | 5c09e6f76e74204f59f35669f4587769d3ee3794 (patch) | |
tree | 2c08f7c98aef715d9bc1eacf73e8bd893d8060d3 | |
parent | 47c7e39bca80a5249288fac5c5da4a44d552e763 (diff) | |
download | scummvm-rg350-5c09e6f76e74204f59f35669f4587769d3ee3794.tar.gz scummvm-rg350-5c09e6f76e74204f59f35669f4587769d3ee3794.tar.bz2 scummvm-rg350-5c09e6f76e74204f59f35669f4587769d3ee3794.zip |
DIRECTOR: Lingo: Fixed reference traces for VOID types
-rw-r--r-- | engines/director/lingo/lingo-code.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/director/lingo/lingo-code.cpp b/engines/director/lingo/lingo-code.cpp index fe1c62f3df..125365a014 100644 --- a/engines/director/lingo/lingo-code.cpp +++ b/engines/director/lingo/lingo-code.cpp @@ -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()); |