More VoIP work: treat voip/sv_voip cvars as protocol version numbers.
This commit is contained in:
parent
1e4fa5a54c
commit
0403ca2260
3 changed files with 12 additions and 2 deletions
|
@ -365,8 +365,10 @@ void CL_SystemInfoChanged( void ) {
|
|||
}
|
||||
|
||||
#if USE_VOIP
|
||||
// in the future, (val) will be a protocol version string, so only
|
||||
// accept explicitly 1, not generally non-zero.
|
||||
s = Info_ValueForKey( systemInfo, "sv_voip" );
|
||||
cl_connectedToVoipServer = atoi( s );
|
||||
cl_connectedToVoipServer = (atoi( s ) == 1);
|
||||
#endif
|
||||
|
||||
s = Info_ValueForKey( systemInfo, "sv_cheats" );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue