aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene Sandulenko2016-07-11 10:55:44 +0200
committerEugene Sandulenko2016-08-03 23:40:36 +0200
commit903f57ab2d9a7de5350383b6fcfe4b77de08ab10 (patch)
treef726c9667beb7f11318938e1238f1ccda3f79f79
parent5e99a9858ba10e29e9b3b735ea9f40b19a559561 (diff)
downloadscummvm-rg350-903f57ab2d9a7de5350383b6fcfe4b77de08ab10.tar.gz
scummvm-rg350-903f57ab2d9a7de5350383b6fcfe4b77de08ab10.tar.bz2
scummvm-rg350-903f57ab2d9a7de5350383b6fcfe4b77de08ab10.zip
DIRECTOR: Lingo: Fix loop test
-rw-r--r--engines/director/lingo/tests/loops.lingo2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/director/lingo/tests/loops.lingo b/engines/director/lingo/tests/loops.lingo
index 0c7592a12a..e4c5ccefc5 100644
--- a/engines/director/lingo/tests/loops.lingo
+++ b/engines/director/lingo/tests/loops.lingo
@@ -1,5 +1,5 @@
set x = 5
-if x <= 5 then set x = 6 end if
+if x <= 5 then set x = 6
if (x = 5) then
set x = 7 -- this is comment
else