diff options
author | Christopher Schwarz <lakitu7@gmail.com> | 2009-10-06 07:18:14 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:16:40 +0000 |
commit | 16e3d9f955fd7feb25b9c2cb1a3884123bdb8c76 (patch) | |
tree | 9f7cc22e0d739f2391477242e6b18f8f0ad72ede /src/ui/ui_main.c | |
parent | 7e5f69e66c03299cde62da178f3c9b97319c20ba (diff) |
* Remove many unused cvars that don't do anything
* Remove g_adminNameProtect, force it on
* Remove g_chatTeamPrefix, force it on
Diffstat (limited to 'src/ui/ui_main.c')
-rw-r--r-- | src/ui/ui_main.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/ui/ui_main.c b/src/ui/ui_main.c index c63dae79..f148b8c1 100644 --- a/src/ui/ui_main.c +++ b/src/ui/ui_main.c @@ -2756,7 +2756,6 @@ static void UI_Update( const char *name ) trap_Cvar_SetValue( "r_fastSky", 0 ); trap_Cvar_SetValue( "r_inGameVideo", 1 ); trap_Cvar_SetValue( "cg_shadows", 1 ); - trap_Cvar_SetValue( "cg_brassTime", 2500 ); trap_Cvar_SetValue( "cg_bounceParticles", 1 ); trap_Cvar_Set( "r_texturemode", "GL_LINEAR_MIPMAP_LINEAR" ); break; @@ -2771,7 +2770,6 @@ static void UI_Update( const char *name ) trap_Cvar_SetValue( "r_texturebits", 0 ); trap_Cvar_SetValue( "r_fastSky", 0 ); trap_Cvar_SetValue( "r_inGameVideo", 1 ); - trap_Cvar_SetValue( "cg_brassTime", 2500 ); trap_Cvar_Set( "r_texturemode", "GL_LINEAR_MIPMAP_LINEAR" ); trap_Cvar_SetValue( "cg_shadows", 0 ); trap_Cvar_SetValue( "cg_bounceParticles", 0 ); @@ -2788,7 +2786,6 @@ static void UI_Update( const char *name ) trap_Cvar_SetValue( "cg_shadows", 0 ); trap_Cvar_SetValue( "r_fastSky", 1 ); trap_Cvar_SetValue( "r_inGameVideo", 0 ); - trap_Cvar_SetValue( "cg_brassTime", 0 ); trap_Cvar_SetValue( "cg_bounceParticles", 0 ); trap_Cvar_Set( "r_texturemode", "GL_LINEAR_MIPMAP_NEAREST" ); break; @@ -2802,7 +2799,6 @@ static void UI_Update( const char *name ) trap_Cvar_SetValue( "r_picmip", 2 ); trap_Cvar_SetValue( "r_texturebits", 16 ); trap_Cvar_SetValue( "cg_shadows", 0 ); - trap_Cvar_SetValue( "cg_brassTime", 0 ); trap_Cvar_SetValue( "r_fastSky", 1 ); trap_Cvar_SetValue( "r_inGameVideo", 0 ); trap_Cvar_SetValue( "cg_bounceParticles", 0 ); |