diff options
| author | Eugene Sandulenko | 2019-12-02 14:00:14 +0100 | 
|---|---|---|
| committer | Eugene Sandulenko | 2019-12-02 14:00:14 +0100 | 
| commit | cc62053b5f4b1a1eec8bf0ab4f5e34b670d5c1b8 (patch) | |
| tree | d193e800e4791d67966cd1bd75c875fb123bccba | |
| parent | 7cf9fbee6ab86c4968d7407e03d847cd2f7ee625 (diff) | |
| download | scummvm-rg350-cc62053b5f4b1a1eec8bf0ab4f5e34b670d5c1b8.tar.gz scummvm-rg350-cc62053b5f4b1a1eec8bf0ab4f5e34b670d5c1b8.tar.bz2 scummvm-rg350-cc62053b5f4b1a1eec8bf0ab4f5e34b670d5c1b8.zip  | |
DIRECTOR: LINGO: Added another failing 'if' test
| -rw-r--r-- | engines/director/lingo/tests/if.lingo | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/engines/director/lingo/tests/if.lingo b/engines/director/lingo/tests/if.lingo index d7809e772d..8c19f83642 100644 --- a/engines/director/lingo/tests/if.lingo +++ b/engines/director/lingo/tests/if.lingo @@ -49,3 +49,8 @@ if abs(y) = x and abs(x) = y then  else    put FALSE  end if + +macro WindowHorzP X +    set X1 = constrainH( 14, X ) +    if X1 = X then return( TRUE ) +    else return( FALSE )  | 
