mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-05-17 22:31:12 +00:00
- MBF_UD_LR_FLIPPED
- Genericisation of the control flip for PAUSE_PlaybackMenuDef
- MBF_SOUNDLESS
- Do not create sound for default menu actions
26 lines
545 B
C
26 lines
545 B
C
/// \file menus/main-profile-select.c
|
|
/// \brief Duplicate for main profile select.
|
|
|
|
#include "../k_menu.h"
|
|
|
|
menuitem_t MAIN_Profiles[] = {
|
|
{IT_KEYHANDLER | IT_NOTHING, NULL, "Select a profile to use or create a new Profile.",
|
|
NULL, {.routine = M_HandleProfileSelect}, 0, 0}, // dummy menuitem for the control func
|
|
};
|
|
|
|
menu_t MAIN_ProfilesDef = {
|
|
sizeof (MAIN_Profiles) / sizeof (menuitem_t),
|
|
NULL,
|
|
0,
|
|
MAIN_Profiles,
|
|
32, 80,
|
|
SKINCOLOR_ULTRAMARINE, 0,
|
|
0,
|
|
NULL,
|
|
2, 5,
|
|
M_DrawProfileSelect,
|
|
M_OptionsTick,
|
|
NULL,
|
|
NULL,
|
|
NULL,
|
|
};
|