From ad7d2fe45dac9bb1b17a0ee66589e8e12b4027f9 Mon Sep 17 00:00:00 2001 From: Christopher Schwarz Date: Mon, 26 Oct 2009 01:36:09 +0000 Subject: * Fix the client News menu function, broken by a new filesystem check introduced in the ioq3 merge --- 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 08c7eb51..e4982be3 100644 --- a/src/client/cl_main.c +++ b/src/client/cl_main.c @@ -1949,7 +1949,7 @@ void CL_NextDownload(void) int prompt; // A download has finished, check whether this matches a referenced checksum - if(*clc.downloadName) + if(*clc.downloadName && !clc.activeCURLNotGameRelated) { char *zippath = FS_BuildOSPath(Cvar_VariableString("fs_homepath"), clc.downloadName, ""); zippath[strlen(zippath)-1] = '\0'; -- cgit