diff --git a/src/client/menu/menu.c b/src/client/menu/menu.c index bea10657..e49a3675 100644 --- a/src/client/menu/menu.c +++ b/src/client/menu/menu.c @@ -1118,19 +1118,6 @@ ControlsSetMenuItemValues(void) s_options_oggshuffle_box.curvalue = (Cvar_VariableValue("ogg_shuffle") != 0); s_options_oggvolume_slider.curvalue = Cvar_VariableValue("ogg_volume") * 10; s_options_oggenable_box.curvalue = (Cvar_VariableValue("ogg_enable") != 0); - - cvar_t *ogg; - ogg = Cvar_Get("ogg_sequence", "loop", CVAR_ARCHIVE); - - if (!strcmp(ogg->string, "random")) - { - s_options_oggshuffle_box.curvalue = 1; - } - else - { - s_options_oggshuffle_box.curvalue = 0; - } - s_options_quality_list.curvalue = (Cvar_VariableValue("s_loadas8bit") == 0); s_options_sensitivity_slider.curvalue = sensitivity->value * 2; s_options_alwaysrun_box.curvalue = (cl_run->value != 0);