From 7f3742dfb452ee29827ab19593f978fe6c340e26 Mon Sep 17 00:00:00 2001 From: havoc Date: Mon, 8 May 2006 05:21:14 +0000 Subject: [PATCH] fix really stupid bug in qw download code which was saving the same file repeatedly (it wasn't resetting the buffer position on each new download) git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@6347 d7cf8633-e32d-0410-b094-e92efae38249 --- cl_parse.c | 1 + 1 file changed, 1 insertion(+) diff --git a/cl_parse.c b/cl_parse.c index 4de0b234..756f309b 100644 --- a/cl_parse.c +++ b/cl_parse.c @@ -391,6 +391,7 @@ static qboolean QW_CL_CheckOrDownloadFile(const char *filename) cls.qw_downloadnumber++; cls.qw_downloadpercent = 0; + cls.qw_downloadmemorycursize = 0; return false; } -- 2.39.2