mirror of
https://github.com/ioquake/ioq3.git
synced 2024-11-10 07:11:46 +00:00
VoIP: voip cvar should be 1 by default.
This commit is contained in:
parent
32d7799c7c
commit
45c18e29b8
1 changed files with 1 additions and 1 deletions
|
@ -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) ) {
|
||||
|
|
Loading…
Reference in a new issue