Add new state options to parser and actually enable them
- Added new state options that DECORATE got to the lemon parser. - Enable token generation for state options. They were previously not generated, so the grammar treated them as function calls instead.
This commit is contained in:
parent
078d37e073
commit
964ff46063
8 changed files with 101 additions and 39 deletions
|
|
@ -253,7 +253,11 @@ struct ZCC_StateGoto : ZCC_StatePart
|
|||
struct ZCC_StateLine : ZCC_StatePart
|
||||
{
|
||||
char Sprite[4];
|
||||
BITFIELD bBright:1;
|
||||
BITFIELD bBright : 1;
|
||||
BITFIELD bFast : 1;
|
||||
BITFIELD bSlow : 1;
|
||||
BITFIELD bNoDelay : 1;
|
||||
BITFIELD bCanRaise : 1;
|
||||
FString *Frames;
|
||||
ZCC_Expression *Offset;
|
||||
ZCC_TreeNode *Action;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue