Forgot to check if the file was important, whoops!

This commit is contained in:
GoldenTails 2020-08-21 04:00:54 -05:00
parent 2c5f23bacb
commit d15be1696a
1 changed files with 2 additions and 1 deletions

View File

@ -776,7 +776,8 @@ UINT16 W_InitFile(const char *filename, boolean mainfile, boolean startup)
if (!memcmp(wadfiles[i]->md5sum, md5sum, 16))
{
CONS_Alert(CONS_ERROR, M_GetText("%s is already loaded\n"), filename);
packetsizetally -= nameonlylength(filename) + 22;
if (important)
packetsizetally -= nameonlylength(filename) + 22;
if (handle)
fclose(handle);
return W_InitFileError(filename, false);