diff options
Diffstat (limited to 'src/client/cl_main.c')
-rw-r--r-- | src/client/cl_main.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/client/cl_main.c b/src/client/cl_main.c index 81cb98ac..a4c74c5a 100644 --- a/src/client/cl_main.c +++ b/src/client/cl_main.c @@ -3407,7 +3407,6 @@ void CL_Init( void ) { // userinfo Cvar_Get ("name", Sys_GetCurrentUser( ), CVAR_USERINFO | CVAR_ARCHIVE ); - Cvar_Get ("rate", "25000", CVAR_USERINFO | CVAR_ARCHIVE ); Cvar_Get ("snaps", "20", CVAR_USERINFO | CVAR_ARCHIVE ); Cvar_Get ("color1", "4", CVAR_USERINFO | CVAR_ARCHIVE ); @@ -3441,7 +3440,7 @@ void CL_Init( void ) { // just demand it. Who doesn't have at least a DSL line now, anyhow? If // you don't, you don't need VoIP. :) if ((cl_voip->integer) && (Cvar_VariableIntegerValue("rate") < 25000)) { - Com_Printf("Your network rate is too slow for VoIP.\n"); + Com_Printf(S_COLOR_YELLOW "Your network rate is too slow for VoIP.\n"); Com_Printf("Set 'Data Rate' to 'LAN/Cable/xDSL' in 'Setup/System/Network' and restart.\n"); Com_Printf("Until then, VoIP is disabled.\n"); Cvar_Set("cl_voip", "0"); @@ -3504,14 +3503,14 @@ CL_Shutdown =============== */ -void CL_Shutdown( void ) { +void CL_Shutdown( char *finalmsg ) { static qboolean recursive = qfalse; // check whether the client is running at all. if(!(com_cl_running && com_cl_running->integer)) return; - Com_Printf( "----- CL_Shutdown -----\n" ); + Com_Printf( "----- Client Shutdown (%s) -----\n", finalmsg ); if ( recursive ) { Com_Printf( "WARNING: Recursive shutdown\n" ); |