Skip to content

Commit

Permalink
VoIP: voip cvar should be 1 by default.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Jun 3, 2008
1 parent 32d7799 commit 45c18e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/client/cl_main.c
Expand Up @@ -3037,7 +3037,7 @@ void CL_Init( void ) {
#if USE_VOIP
cl_voipSend = Cvar_Get ("cl_voipSend", "0", 0);
cl_voipGainDuringCapture = Cvar_Get ("cl_voipGainDuringCapture", "0.2", CVAR_ARCHIVE);
voip = Cvar_Get ("voip", "0", CVAR_USERINFO | CVAR_ARCHIVE | CVAR_LATCH);
voip = Cvar_Get ("voip", "1", CVAR_USERINFO | CVAR_ARCHIVE | CVAR_LATCH);

// This is a protocol version number.
if ( (voip->integer < 0) || (voip->integer > 1) ) {
Expand Down

0 comments on commit 45c18e2

Please sign in to comment.