diff options
author | Eugene Sandulenko | 2016-08-20 12:59:59 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2016-08-20 12:59:59 +0200 |
commit | fdd4e8369a1dfd8726b533f74b80bb414db0e612 (patch) | |
tree | e0b35c30816d789f8028c555b67113e57b3965bf /engines/director/lingo/lingo-gr.h | |
parent | dcbc7e3b4de8525c4638c151eb3a7a662e3b15e1 (diff) | |
download | scummvm-rg350-fdd4e8369a1dfd8726b533f74b80bb414db0e612.tar.gz scummvm-rg350-fdd4e8369a1dfd8726b533f74b80bb414db0e612.tar.bz2 scummvm-rg350-fdd4e8369a1dfd8726b533f74b80bb414db0e612.zip |
DIRECTOR: Lingo: Defined 'mod' operator and specified operator precedence
Diffstat (limited to 'engines/director/lingo/lingo-gr.h')
-rw-r--r-- | engines/director/lingo/lingo-gr.h | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/engines/director/lingo/lingo-gr.h b/engines/director/lingo/lingo-gr.h index 34e311c01e..46097085fe 100644 --- a/engines/director/lingo/lingo-gr.h +++ b/engines/director/lingo/lingo-gr.h @@ -101,12 +101,13 @@ tAND = 317, tOR = 318, tNOT = 319, - tCONCAT = 320, - tCONTAINS = 321, - tSTARTS = 322, - tSPRITE = 323, - tINTERSECTS = 324, - tWITHIN = 325 + tMOD = 320, + tCONCAT = 321, + tCONTAINS = 322, + tSTARTS = 323, + tSPRITE = 324, + tINTERSECTS = 325, + tWITHIN = 326 }; #endif /* Tokens. */ @@ -172,12 +173,13 @@ #define tAND 317 #define tOR 318 #define tNOT 319 -#define tCONCAT 320 -#define tCONTAINS 321 -#define tSTARTS 322 -#define tSPRITE 323 -#define tINTERSECTS 324 -#define tWITHIN 325 +#define tMOD 320 +#define tCONCAT 321 +#define tCONTAINS 322 +#define tSTARTS 323 +#define tSPRITE 324 +#define tINTERSECTS 325 +#define tWITHIN 326 @@ -195,7 +197,7 @@ typedef union YYSTYPE Common::Array<double> *arr; } /* Line 1529 of yacc.c. */ -#line 199 "engines/director/lingo/lingo-gr.hpp" +#line 201 "engines/director/lingo/lingo-gr.hpp" YYSTYPE; # define yystype YYSTYPE /* obsolescent; will be withdrawn */ # define YYSTYPE_IS_DECLARED 1 |