mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-12-16 04:52:40 +00:00
- Rename every instance of "gif" to "movie". - Rename Screenshot options to Media options. - Surface `moviemode_mode` as `Recording Format`. - Surface `movie_showfps` option as "Real-Time Data". - Other avrecorder options... surface on a case by case basis, there's a lot of them and not convinced they're all necessary to be user-facing?
46 lines
1.2 KiB
C
46 lines
1.2 KiB
C
/// \file menus/options-data-1.c
|
|
/// \brief Data Options -- see dopt_e
|
|
|
|
#include "../k_menu.h"
|
|
|
|
// data options menu -- see dopt_e
|
|
menuitem_t OPTIONS_Data[] =
|
|
{
|
|
|
|
{IT_STRING | IT_SUBMENU, "Media Options...", "Set options relative to screenshot and movie capture.",
|
|
NULL, {.submenu = &OPTIONS_DataScreenshotDef}, 0, 0},
|
|
|
|
{IT_STRING | IT_SUBMENU, "Addon Options...", "Set options relative to the addons menu.",
|
|
NULL, {.submenu = &OPTIONS_DataAddonDef}, 0, 0},
|
|
|
|
{IT_STRING | IT_SUBMENU, "Replay Options...", "Set options relative to replays.",
|
|
NULL, {.submenu = &OPTIONS_DataReplayDef}, 0, 0},
|
|
|
|
#ifdef HAVE_DISCORDRPC
|
|
{IT_STRING | IT_SUBMENU, "Discord Options...", "Set options relative to Discord Rich Presence.",
|
|
NULL, {.submenu = &OPTIONS_DataDiscordDef}, 0, 0},
|
|
#endif
|
|
|
|
{IT_SPACE | IT_NOTHING, NULL, NULL,
|
|
NULL, {NULL}, 0, 0},
|
|
|
|
{IT_STRING | IT_SUBMENU, "\x85""Erase Data...", "Erase specific data. Be careful, what's deleted is gone forever!",
|
|
NULL, {.submenu = &OPTIONS_DataEraseDef}, 0, 0},
|
|
|
|
};
|
|
|
|
menu_t OPTIONS_DataDef = {
|
|
sizeof (OPTIONS_Data) / sizeof (menuitem_t),
|
|
&OPTIONS_MainDef,
|
|
0,
|
|
OPTIONS_Data,
|
|
48, 80,
|
|
SKINCOLOR_BLUEBERRY, 0,
|
|
NULL,
|
|
2, 5,
|
|
M_DrawGenericOptions,
|
|
M_OptionsTick,
|
|
NULL,
|
|
NULL,
|
|
NULL,
|
|
};
|