diff options
author | Andrey Nazarov <skuller@skuller.net> | 2010-10-06 20:32:58 +0400 |
---|---|---|
committer | Andrey Nazarov <skuller@skuller.net> | 2010-10-06 20:32:58 +0400 |
commit | 47a5d9e140b64ba080a11b67ccda9e4ec0b48609 (patch) | |
tree | 01149fba8ae2600eea684f46158dc6dba846f872 /src/cl_main.c | |
parent | d523f7c99067c582f907f81e40974f97194b337d (diff) |
Properly update the blend client setting.
Diffstat (limited to 'src/cl_main.c')
-rw-r--r-- | src/cl_main.c | 21 |
1 files changed, 1 insertions, 20 deletions
diff --git a/src/cl_main.c b/src/cl_main.c index f4cb53e..82c0bdb 100644 --- a/src/cl_main.c +++ b/src/cl_main.c @@ -135,11 +135,6 @@ static request_t *CL_AddRequest( const netadr_t *adr, requestType_t type ) { return r; } -/* -=================== -CL_UpdateGunSetting -=================== -*/ static void CL_UpdateGunSetting( void ) { int nogun; @@ -164,11 +159,6 @@ static void CL_UpdateGunSetting( void ) { MSG_FlushTo( &cls.netchan->message ); } -/* -=================== -CL_UpdateGibSetting -=================== -*/ static void CL_UpdateGibSetting( void ) { if( cls.state < ca_connected ) { return; @@ -184,11 +174,6 @@ static void CL_UpdateGibSetting( void ) { MSG_FlushTo( &cls.netchan->message ); } -/* -=================== -CL_UpdateFootstepsSetting -=================== -*/ static void CL_UpdateFootstepsSetting( void ) { if( cls.state < ca_connected ) { return; @@ -203,11 +188,6 @@ static void CL_UpdateFootstepsSetting( void ) { MSG_FlushTo( &cls.netchan->message ); } -/* -=================== -CL_UpdatePredictSetting -=================== -*/ static void CL_UpdatePredictSetting( void ) { if( cls.state < ca_connected ) { return; @@ -2020,6 +2000,7 @@ void CL_RequestNextDownload ( void ) { Cvar_FixCheats(); CL_UpdateGunSetting(); + CL_UpdateBlendSetting(); CL_UpdateGibSetting(); CL_UpdateFootstepsSetting(); CL_UpdatePredictSetting(); |