diff options
author | Eugene Sandulenko | 2016-07-11 10:55:44 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2016-08-03 23:40:36 +0200 |
commit | 903f57ab2d9a7de5350383b6fcfe4b77de08ab10 (patch) | |
tree | f726c9667beb7f11318938e1238f1ccda3f79f79 /engines/director/lingo | |
parent | 5e99a9858ba10e29e9b3b735ea9f40b19a559561 (diff) | |
download | scummvm-rg350-903f57ab2d9a7de5350383b6fcfe4b77de08ab10.tar.gz scummvm-rg350-903f57ab2d9a7de5350383b6fcfe4b77de08ab10.tar.bz2 scummvm-rg350-903f57ab2d9a7de5350383b6fcfe4b77de08ab10.zip |
DIRECTOR: Lingo: Fix loop test
Diffstat (limited to 'engines/director/lingo')
-rw-r--r-- | engines/director/lingo/tests/loops.lingo | 2 |
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 |