Fix bitflags enum polyturnflags_e for C++

This commit is contained in:
Eidolon 2026-03-31 19:39:19 -05:00
parent 2e5c0ed531
commit 933e1db424

View file

@ -254,11 +254,9 @@ typedef INT32 textmappolyrotate_t;
#define TMPR_CONTINUOUS (1<<2) #define TMPR_CONTINUOUS (1<<2)
#define TMPR_OVERRIDE (1<<3) #define TMPR_OVERRIDE (1<<3)
typedef enum typedef INT32 polyturnflags_e;
{ #define PTF_PLAYERS (1) // Turn players with movement
PTF_PLAYERS = 1, // Turn players with movement #define PTF_OTHERS (1<<1) // Turn other mobjs with movement
PTF_OTHERS = 1<<1, // Turn other mobjs with movement
} polyturnflags_e;
struct polyrotdata_t struct polyrotdata_t
{ {