mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-28 04:51:42 +00:00
Fix bitflags enum polyturnflags_e for C++
This commit is contained in:
parent
2e5c0ed531
commit
933e1db424
1 changed files with 3 additions and 5 deletions
|
|
@ -254,11 +254,9 @@ typedef INT32 textmappolyrotate_t;
|
|||
#define TMPR_CONTINUOUS (1<<2)
|
||||
#define TMPR_OVERRIDE (1<<3)
|
||||
|
||||
typedef enum
|
||||
{
|
||||
PTF_PLAYERS = 1, // Turn players with movement
|
||||
PTF_OTHERS = 1<<1, // Turn other mobjs with movement
|
||||
} polyturnflags_e;
|
||||
typedef INT32 polyturnflags_e;
|
||||
#define PTF_PLAYERS (1) // Turn players with movement
|
||||
#define PTF_OTHERS (1<<1) // Turn other mobjs with movement
|
||||
|
||||
struct polyrotdata_t
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue