Remove gamma slider from menus

This commit is contained in:
AJ Martinez 2024-01-12 16:28:30 -07:00
parent 352fd87537
commit b56a202cc6

View file

@ -13,6 +13,9 @@ menuitem_t OPTIONS_Video[] =
{IT_STRING | IT_CALL, "Set Resolution...", "Change the screen resolution for the game.", {IT_STRING | IT_CALL, "Set Resolution...", "Change the screen resolution for the game.",
NULL, {.routine = M_VideoModeMenu}, 0, 0}, NULL, {.routine = M_VideoModeMenu}, 0, 0},
{IT_NOTHING|IT_SPACE, NULL, NULL,
NULL, {NULL}, 0, 0},
#if (defined (__unix__) && !defined (MSDOS)) || defined (UNIXCOMMON) || defined (HAVE_SDL) #if (defined (__unix__) && !defined (MSDOS)) || defined (UNIXCOMMON) || defined (HAVE_SDL)
{IT_STRING | IT_CVAR, "Fullscreen", "Set whether you want to use fullscreen or windowed mode.", {IT_STRING | IT_CVAR, "Fullscreen", "Set whether you want to use fullscreen or windowed mode.",
NULL, {.cvar = &cv_fullscreen}, 0, 0}, NULL, {.cvar = &cv_fullscreen}, 0, 0},
@ -35,12 +38,15 @@ menuitem_t OPTIONS_Video[] =
NULL, {.cvar = &cv_reducevfx}, 0, 0}, NULL, {.cvar = &cv_reducevfx}, 0, 0},
#endif #endif
/*
{IT_STRING | IT_CVAR | IT_CV_SLIDER, "Gamma", "Adjusts the overall brightness of the game.", {IT_STRING | IT_CVAR | IT_CV_SLIDER, "Gamma", "Adjusts the overall brightness of the game.",
NULL, {.cvar = &cv_globalgamma}, 0, 0}, NULL, {.cvar = &cv_globalgamma}, 0, 0},
{IT_NOTHING|IT_SPACE, NULL, NULL, {IT_NOTHING|IT_SPACE, NULL, NULL,
NULL, {NULL}, 0, 0}, NULL, {NULL}, 0, 0},
*/
{IT_HEADER, "Advanced...", NULL, {IT_HEADER, "Advanced...", NULL,
NULL, {NULL}, 0, 0}, NULL, {NULL}, 0, 0},