diff options
| author | tma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2008-07-06 01:35:01 +0000 | 
|---|---|---|
| committer | tma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2008-07-06 01:35:01 +0000 | 
| commit | 59a6bcfe64b4d4f61f1d0c4ee8dc5e83c486f2c7 (patch) | |
| tree | b581283591a7881beefeac1f8d13c73657fa982f /code/qcommon/common.c | |
| parent | ea34e6946550b6326f82d010623486e9836315a1 (diff) | |
| download | ioquake3-aero-59a6bcfe64b4d4f61f1d0c4ee8dc5e83c486f2c7.tar.gz ioquake3-aero-59a6bcfe64b4d4f61f1d0c4ee8dc5e83c486f2c7.zip  | |
* Remove silly range check on sv_voip during initialisation
* Changed dedicated binary dedicated cvar to CVAR_INIT and remove runtime check
git-svn-id: svn://svn.icculus.org/quake3/trunk@1410 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/qcommon/common.c')
| -rw-r--r-- | code/qcommon/common.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/code/qcommon/common.c b/code/qcommon/common.c index d186455..f100b82 100644 --- a/code/qcommon/common.c +++ b/code/qcommon/common.c @@ -2561,7 +2561,7 @@ void Com_Init( char *commandLine ) {    // get dedicated here for proper hunk megs initialization  #ifdef DEDICATED -	com_dedicated = Cvar_Get ("dedicated", "1", CVAR_LATCH); +	com_dedicated = Cvar_Get ("dedicated", "1", CVAR_INIT);  #else  	com_dedicated = Cvar_Get ("dedicated", "0", CVAR_LATCH);  #endif  | 
