diff options
author | Christopher Schwarz <lakitu7@gmail.com> | 2009-10-26 01:36:09 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:17:07 +0000 |
commit | ad7d2fe45dac9bb1b17a0ee66589e8e12b4027f9 (patch) | |
tree | b283234adbd988d7cb864c0199df0345ec268a59 /src/client/cl_main.c | |
parent | 3814ae32abbb98842e2b741f0379d259629e1df7 (diff) |
* Fix the client News menu function, broken by a new filesystem check introduced in the ioq3 merge
Diffstat (limited to 'src/client/cl_main.c')
-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 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'; |