aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene Sandulenko2016-06-24 23:12:20 +0200
committerEugene Sandulenko2016-08-03 23:40:36 +0200
commit61e80e158b48d84234c16304f8c3aeb76fd6e7b7 (patch)
treed48125fd7d59c902a2ea56711dfb10d9bae686c3
parent0f3f6ba7ebefa48071f2ddddc1f1f7febd4242fe (diff)
downloadscummvm-rg350-61e80e158b48d84234c16304f8c3aeb76fd6e7b7.tar.gz
scummvm-rg350-61e80e158b48d84234c16304f8c3aeb76fd6e7b7.tar.bz2
scummvm-rg350-61e80e158b48d84234c16304f8c3aeb76fd6e7b7.zip
DIRECTOR: Lingo: Made the unassigned variable match the original
-rw-r--r--engines/director/lingo/lingo-code.cpp2
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;
}