Skip to content
Snippets Groups Projects
Commit dc86206c authored by James R.'s avatar James R.
Browse files

Count any files not already loaded toward filestoload?

parent d96f93f8
No related branches found
No related tags found
No related merge requests found
......@@ -433,7 +433,7 @@ INT32 CL_CheckFiles(void)
if (fileneeded[i].status == FS_NOTFOUND || fileneeded[i].status == FS_MD5SUMBAD || fileneeded[i].status == FS_FALLBACK)
downloadrequired = true;
if (fileneeded[i].status == FS_FOUND || fileneeded[i].status == FS_NOTFOUND)
if (fileneeded[i].status != FS_OPEN)
filestoload++;
if (fileneeded[i].status != FS_NOTCHECKED) //since we're running this over multiple tics now, its possible for us to come across files checked in previous tics
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment