mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
- MBF_UD_LR_FLIPPED
- Genericisation of the control flip for PAUSE_PlaybackMenuDef
- MBF_SOUNDLESS
- Do not create sound for default menu actions
30 lines
673 B
C
30 lines
673 B
C
/// \file menus/options-data-replays.c
|
|
/// \brief Replay Options
|
|
|
|
#include "../k_menu.h"
|
|
|
|
menuitem_t OPTIONS_DataReplay[] =
|
|
{
|
|
{IT_STRING | IT_CVAR, "Record Replays", "Select when to save replays.",
|
|
NULL, {.cvar = &cv_recordmultiplayerdemos}, 0, 0},
|
|
|
|
{IT_STRING | IT_CVAR, "Net Consistency Quality", "For filesize, how often do we write position data in online replays?",
|
|
NULL, {.cvar = &cv_netdemosyncquality}, 0, 0},
|
|
};
|
|
|
|
menu_t OPTIONS_DataReplayDef = {
|
|
sizeof (OPTIONS_DataReplay) / sizeof (menuitem_t),
|
|
&OPTIONS_DataDef,
|
|
0,
|
|
OPTIONS_DataReplay,
|
|
48, 80,
|
|
SKINCOLOR_BLUEBERRY, 0,
|
|
0,
|
|
NULL,
|
|
2, 5,
|
|
M_DrawGenericOptions,
|
|
M_OptionsTick,
|
|
NULL,
|
|
NULL,
|
|
NULL,
|
|
};
|