From 880e06de387646fa3f0efde940d731e71afbbb93 Mon Sep 17 00:00:00 2001 From: Michael Roitzsch Date: Sun, 21 Nov 2004 15:10:39 +0000 Subject: updated goom to 2k4-dev21 * tweaked somewhat to avoid the bright circle for the first seconds of playback * no idea whether this fixes the AMD64 problems, I have not found anything suspicious CVS patchset: 7143 CVS date: 2004/11/21 15:10:39 --- src/post/goom/goomsl_yacc.h | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/post/goom/goomsl_yacc.h (limited to 'src/post/goom/goomsl_yacc.h') diff --git a/src/post/goom/goomsl_yacc.h b/src/post/goom/goomsl_yacc.h new file mode 100644 index 000000000..8f3ecf476 --- /dev/null +++ b/src/post/goom/goomsl_yacc.h @@ -0,0 +1,28 @@ +typedef union { + int intValue; + float floatValue; + char charValue; + char strValue[2048]; + NodeType *nPtr; + } YYSTYPE; +#define TYPE_INTEGER 257 +#define TYPE_FLOAT 258 +#define TYPE_VAR 259 +#define TYPE_PTR 260 +#define PTR_TK 261 +#define INT_TK 262 +#define FLOAT_TK 263 +#define DECLARE 264 +#define EXTERNAL 265 +#define WHILE 266 +#define DO 267 +#define NOT 268 +#define PLUS_EQ 269 +#define SUB_EQ 270 +#define DIV_EQ 271 +#define MUL_EQ 272 +#define SUP_EQ 273 +#define LOW_EQ 274 + + +extern YYSTYPE yylval; -- cgit v1.2.3