aboutsummaryrefslogtreecommitdiffstats
path: root/code/client/cl_parse.c
diff options
context:
space:
mode:
authoricculus <icculus@edf5b092-35ff-0310-97b2-ce42778d08ea>2008-06-02 19:52:13 +0000
committericculus <icculus@edf5b092-35ff-0310-97b2-ce42778d08ea>2008-06-02 19:52:13 +0000
commitb7d4ef98b10aad87a1a69bdd4081b5b585c9fe9e (patch)
tree424231db4b4fa5a64240e7ca0e91e61a428c46ca /code/client/cl_parse.c
parent54a42296270247b1b1bfb1f576fe67106eb86d03 (diff)
downloadioquake3-aero-b7d4ef98b10aad87a1a69bdd4081b5b585c9fe9e.tar.gz
ioquake3-aero-b7d4ef98b10aad87a1a69bdd4081b5b585c9fe9e.zip
More VoIP work: treat voip/sv_voip cvars as protocol version numbers.
git-svn-id: svn://svn.icculus.org/quake3/trunk@1358 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/client/cl_parse.c')
-rw-r--r--code/client/cl_parse.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/code/client/cl_parse.c b/code/client/cl_parse.c
index 167b035..d80d7d2 100644
--- a/code/client/cl_parse.c
+++ b/code/client/cl_parse.c
@@ -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" );