mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-25 19:43:22 +00:00
Fix bitflags enum raiseflags_t for C++
This commit is contained in:
parent
45c48168ef
commit
14985f6852
1 changed files with 4 additions and 6 deletions
10
src/p_spec.h
10
src/p_spec.h
|
|
@ -911,12 +911,10 @@ struct eachtime_t
|
|||
boolean triggerOnExit;
|
||||
};
|
||||
|
||||
typedef enum
|
||||
{
|
||||
RF_REVERSE = 1, //Lower when stood on
|
||||
RF_SPINDASH = 1<<1, //Require spindash to move
|
||||
RF_DYNAMIC = 1<<2, //Dynamically sinking platform
|
||||
} raiseflag_t;
|
||||
typedef int raiseflag_t;
|
||||
#define RF_REVERSE (1) //Lower when stood on
|
||||
#define RF_SPINDASH (1<<1) //Require spindash to move
|
||||
#define RF_DYNAMIC (1<<2) //Dynamically sinking platform
|
||||
|
||||
struct raise_t
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue