diff options
author | Eugene Sandulenko | 2016-06-24 23:12:20 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2016-08-03 23:40:36 +0200 |
commit | 61e80e158b48d84234c16304f8c3aeb76fd6e7b7 (patch) | |
tree | d48125fd7d59c902a2ea56711dfb10d9bae686c3 /engines/director/lingo/lingo-code.cpp | |
parent | 0f3f6ba7ebefa48071f2ddddc1f1f7febd4242fe (diff) | |
download | scummvm-rg350-61e80e158b48d84234c16304f8c3aeb76fd6e7b7.tar.gz scummvm-rg350-61e80e158b48d84234c16304f8c3aeb76fd6e7b7.tar.bz2 scummvm-rg350-61e80e158b48d84234c16304f8c3aeb76fd6e7b7.zip |
DIRECTOR: Lingo: Made the unassigned variable match the original
Diffstat (limited to 'engines/director/lingo/lingo-code.cpp')
-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 e3d1b1675c..d1240ec0a1 100644 --- a/engines/director/lingo/lingo-code.cpp +++ b/engines/director/lingo/lingo-code.cpp @@ -141,7 +141,7 @@ bool Lingo::verify(Symbol *s) { } if (s->type == VOID) { - warning("undefined variable '%s'", s->name); + warning("Variable used before assigning a value '%s'", s->name); return false; } |