diff options
author | Eugene Sandulenko | 2016-07-10 15:24:00 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2016-08-03 23:40:36 +0200 |
commit | aa45e48355e670b2d8807515fa3158c0a130fcfb (patch) | |
tree | 3103dd0aedccf32210830978a712938b1be43d0d /engines/director/lingo/tests | |
parent | 855db111fcfca11224f77255a01bef50eb386961 (diff) | |
download | scummvm-rg350-aa45e48355e670b2d8807515fa3158c0a130fcfb.tar.gz scummvm-rg350-aa45e48355e670b2d8807515fa3158c0a130fcfb.tar.bz2 scummvm-rg350-aa45e48355e670b2d8807515fa3158c0a130fcfb.zip |
DIRECTOR: Lingo: Better error recovery and further work on if() statements
Diffstat (limited to 'engines/director/lingo/tests')
-rw-r--r-- | engines/director/lingo/tests/macros.lingo | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/director/lingo/tests/macros.lingo b/engines/director/lingo/tests/macros.lingo index a75dc4c8f9..7ffa557cb7 100644 --- a/engines/director/lingo/tests/macros.lingo +++ b/engines/director/lingo/tests/macros.lingo @@ -3,7 +3,7 @@ macro SHIPX global x, y set x = Random(5) if x = 1 then -go \"Zoom\" +go "Zoom" exit end if if x >1 then @@ -16,7 +16,7 @@ put 100 macro ZIPX set x = Random(5) if x = 1 then -go \"ZIP\" +go "ZIP" exit end if if x >1 then |