diff options
author | Christopher Schwarz <lakitu7@gmail.com> | 2011-02-01 09:21:55 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:17:57 +0000 |
commit | e5888a4a883482474ff0da61b500dc7ba3f56273 (patch) | |
tree | 39f787f47307af03d53527078854724fddb1d410 /src | |
parent | a9e6154bce4cb85af5ada13848efb2e0db7fe4ed (diff) |
* Don't allow people to manually set com_downloadprompt, because setting it nonzero at the wrong time causes the game to hang
Diffstat (limited to 'src')
-rw-r--r-- | src/client/cl_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/cl_main.c b/src/client/cl_main.c index a4c74c5a..c7ae2614 100644 --- a/src/client/cl_main.c +++ b/src/client/cl_main.c @@ -3370,7 +3370,7 @@ void CL_Init( void ) { #ifdef USE_CURL cl_cURLLib = Cvar_Get("cl_cURLLib", DEFAULT_CURL_LIB, CVAR_ARCHIVE); #endif - com_downloadPrompt = Cvar_Get ("com_downloadPrompt", "0", CVAR_TEMP); + com_downloadPrompt = Cvar_Get ("com_downloadPrompt", "0", CVAR_ROM); Cvar_Get( "com_downloadPromptText", "", CVAR_TEMP ); cl_conXOffset = Cvar_Get ("cl_conXOffset", "0", 0); |