Fix a bug where adding the same mod multiple times counted to the mod limit

A one line fix. Seriously.
This commit is contained in:
GoldenTails 2020-08-21 03:30:22 -05:00
parent 3e02f5d0cb
commit 2c5f23bacb
1 changed files with 1 additions and 0 deletions

View File

@ -776,6 +776,7 @@ 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 (handle)
fclose(handle);
return W_InitFileError(filename, false);