r1363 - trunk/code/client

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Tue Jun 3 02:06:19 EDT 2008


Author: icculus
Date: 2008-06-03 02:06:17 -0400 (Tue, 03 Jun 2008)
New Revision: 1363

Modified:
   trunk/code/client/cl_main.c
Log:
VoIP: voip cvar should be 1 by default.


Modified: trunk/code/client/cl_main.c
===================================================================
--- trunk/code/client/cl_main.c	2008-06-03 04:40:40 UTC (rev 1362)
+++ trunk/code/client/cl_main.c	2008-06-03 06:06:17 UTC (rev 1363)
@@ -3037,7 +3037,7 @@
 #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) ) {




More information about the quake3-commits mailing list