More VoIP work: treat voip/sv_voip cvars as protocol version numbers.

This commit is contained in:
Ryan C. Gordon 2008-06-02 19:52:13 +00:00
parent 1e4fa5a54c
commit 0403ca2260
3 changed files with 12 additions and 2 deletions

View file

@ -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" );