diff options
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'; |