diff options
author | Eugene Sandulenko | 2016-08-06 21:16:34 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2016-08-06 21:34:27 +0200 |
commit | bbc6e2aa6a0d36358ff11ae27a3099a5975b2780 (patch) | |
tree | 0c1126951305fbce369c89de95fb998ebda20152 /engines/director/lingo/tests/builtin.lingo | |
parent | 949919bebd3923d59de3f4999e3b5c471fa00374 (diff) | |
download | scummvm-rg350-bbc6e2aa6a0d36358ff11ae27a3099a5975b2780.tar.gz scummvm-rg350-bbc6e2aa6a0d36358ff11ae27a3099a5975b2780.tar.bz2 scummvm-rg350-bbc6e2aa6a0d36358ff11ae27a3099a5975b2780.zip |
DIRECTOR: Lingo. Added stubs for 'do' and 'open' commands
Diffstat (limited to 'engines/director/lingo/tests/builtin.lingo')
-rw-r--r-- | engines/director/lingo/tests/builtin.lingo | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/director/lingo/tests/builtin.lingo b/engines/director/lingo/tests/builtin.lingo index 5d427ba73d..b8cdf21b80 100644 --- a/engines/director/lingo/tests/builtin.lingo +++ b/engines/director/lingo/tests/builtin.lingo @@ -2,3 +2,7 @@ beep beep 3 alert "Hi" alert "Hi" && "there" + +open "Hello" +open "Hello" with "Finder" +open "Hello" && "more" with "Finder" |