hmm. that should make downloads less crazy.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@285 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2004-10-02 05:42:20 +00:00
parent 20e15438ed
commit c5fc5858b6
1 changed files with 6 additions and 0 deletions

View File

@ -547,6 +547,12 @@ qboolean CL_CheckOrDownloadFile (char *filename, int nodelay)
if (!strcmp(failed->name, filename))
return true;
}
for (failed = cl.downloadlist; failed; failed = failed->next) //It's already on our list. Ignore it.
{
if (!strcmp(failed->name, filename))
return true;
}
}
if ((!requiredownloads.value && !nodelay) || nodelay==-1)