summaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
authorChristopher Schwarz <lakitu7@gmail.com>2011-02-01 09:21:55 +0000
committerTim Angus <tim@ngus.net>2013-01-03 00:17:57 +0000
commite5888a4a883482474ff0da61b500dc7ba3f56273 (patch)
tree39f787f47307af03d53527078854724fddb1d410 /src/client
parenta9e6154bce4cb85af5ada13848efb2e0db7fe4ed (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/client')
-rw-r--r--src/client/cl_main.c2
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);