mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-25 03:23:43 +00:00
Fix bitflags enum menubehaviourflags_t for C++
This commit is contained in:
parent
cb4ae5b942
commit
b642e64982
1 changed files with 6 additions and 8 deletions
14
src/k_menu.h
14
src/k_menu.h
|
|
@ -134,14 +134,12 @@ void M_HandlePauseMenuCallVote(INT32 choice);
|
|||
// MENU TYPEDEFS
|
||||
//
|
||||
|
||||
typedef enum
|
||||
{
|
||||
MBF_UD_LR_FLIPPED = 1, // flip up-down and left-right axes
|
||||
MBF_SOUNDLESS = 1<<1, // do not play base menu sounds
|
||||
MBF_NOLOOPENTRIES = 1<<2, // do not loop M_NextOpt/M_PrevOpt
|
||||
MBF_DRAWBGWHILEPLAYING = 1<<3, // run backroutine() outside of GS_MENU
|
||||
MBF_CANTRESTORE = 1<<4, // Do not use in restoreMenu
|
||||
} menubehaviourflags_t;
|
||||
typedef INT32 menubehaviourflags_t;
|
||||
#define MBF_UD_LR_FLIPPED (1) // flip up-down and left-right axes
|
||||
#define MBF_SOUNDLESS (1<<1) // do not play base menu sounds
|
||||
#define MBF_NOLOOPENTRIES (1<<2) // do not loop M_NextOpt/M_PrevOpt
|
||||
#define MBF_DRAWBGWHILEPLAYING (1<<3) // run backroutine() outside of GS_MENU
|
||||
#define MBF_CANTRESTORE (1<<4) // Do not use in restoreMenu
|
||||
|
||||
struct menuitem_t
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue