From: havoc Date: Sun, 11 Mar 2007 23:56:44 +0000 (+0000) Subject: don't abort a download if a level change occurs during the download, instead just... X-Git-Tag: xonotic-v0.1.0preview~3463 X-Git-Url: https://git.xonotic.org/?a=commitdiff_plain;h=3d4ba9e626b7c399f6d13c31cb9f5985a9ca2cde;p=xonotic%2Fdarkplaces.git don't abort a download if a level change occurs during the download, instead just wait for it to finish before signing in to the new level git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@6953 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/cl_parse.c b/cl_parse.c index d3262670..dae4073d 100644 --- a/cl_parse.c +++ b/cl_parse.c @@ -910,6 +910,10 @@ void CL_BeginDownloads(qboolean aborteddownload) // curl is done, so let's start with the business cl.loadbegun = true; + // if already downloading something from the previous level, don't stop it + if (cls.qw_downloadname[0]) + return; + if (cl.downloadcsqc) { size_t progsize;