Make Video settings menu revert some settings to default values via Cvar_Reset() instead of hardcoded values (#2589)

This commit is contained in:
Thilo Schulz 2011-03-07 23:07:24 +00:00
parent dd0161f475
commit 97ed3650d7
1 changed files with 5 additions and 3 deletions

View File

@ -683,9 +683,11 @@ static void GraphicsOptions_ApplyChanges( void *unused, int notification )
trap_Cvar_SetValue( "r_mode", s_graphicsoptions.mode.curvalue ); trap_Cvar_SetValue( "r_mode", s_graphicsoptions.mode.curvalue );
trap_Cvar_SetValue( "r_fullscreen", s_graphicsoptions.fs.curvalue ); trap_Cvar_SetValue( "r_fullscreen", s_graphicsoptions.fs.curvalue );
trap_Cvar_SetValue( "r_colorbits", 0 );
trap_Cvar_SetValue( "r_depthbits", 0 ); trap_Cvar_Reset("r_colorbits");
trap_Cvar_SetValue( "r_stencilbits", 0 ); trap_Cvar_Reset("r_depthbits");
trap_Cvar_Reset("r_stencilbits");
trap_Cvar_SetValue( "r_vertexLight", s_graphicsoptions.lighting.curvalue ); trap_Cvar_SetValue( "r_vertexLight", s_graphicsoptions.lighting.curvalue );
if ( s_graphicsoptions.geometry.curvalue == 2 ) if ( s_graphicsoptions.geometry.curvalue == 2 )