From e5888a4a883482474ff0da61b500dc7ba3f56273 Mon Sep 17 00:00:00 2001 From: Christopher Schwarz Date: Tue, 1 Feb 2011 09:21:55 +0000 Subject: * Don't allow people to manually set com_downloadprompt, because setting it nonzero at the wrong time causes the game to hang --- src/client/cl_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- cgit