Restart the refresher when certain values are changed via the menu

This commit is contained in:
Yamagi Burmeister 2012-08-02 14:59:51 +02:00
parent f1420ffe75
commit de9dda7432

View file

@ -81,21 +81,42 @@ ResetDefaults(void *unused)
static void static void
ApplyChanges(void *unused) ApplyChanges(void *unused)
{ {
qboolean restart = false;
if (gl_picmip->value != (3 - s_tq_slider.curvalue))
{
Cvar_SetValue("gl_picmip", 3 - s_tq_slider.curvalue); Cvar_SetValue("gl_picmip", 3 - s_tq_slider.curvalue);
Cvar_SetValue("vid_fullscreen", s_fs_box.curvalue); restart = true;
}
if (gl_ext_palettedtexture->value != s_paletted_texture_box.curvalue)
{
Cvar_SetValue("gl_ext_palettedtexture", s_paletted_texture_box.curvalue); Cvar_SetValue("gl_ext_palettedtexture", s_paletted_texture_box.curvalue);
restart = true;
}
/* Restarts automatically */
Cvar_SetValue("vid_fullscreen", s_fs_box.curvalue);
/* custom mode */ /* custom mode */
if (s_mode_list.curvalue != CUSTOM_MODE) if (s_mode_list.curvalue != CUSTOM_MODE)
{ {
/* Restarts automatically */
Cvar_SetValue("gl_mode", s_mode_list.curvalue); Cvar_SetValue("gl_mode", s_mode_list.curvalue);
} }
else else
{ {
/* Restarts automatically */
Cvar_SetValue("gl_mode", -1); Cvar_SetValue("gl_mode", -1);
} }
M_ForceMenuOff(); if (restart)
{
Cbuf_AddText("vid_restart\n");
}
//M_ForceMenuOff();
} }
void void