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:
parent
20e15438ed
commit
c5fc5858b6
1 changed files with 6 additions and 0 deletions
|
@ -547,6 +547,12 @@ qboolean CL_CheckOrDownloadFile (char *filename, int nodelay)
|
||||||
if (!strcmp(failed->name, filename))
|
if (!strcmp(failed->name, filename))
|
||||||
return true;
|
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)
|
if ((!requiredownloads.value && !nodelay) || nodelay==-1)
|
||||||
|
|
Loading…
Reference in a new issue