Add the check to the other loop per Graf's request.

This commit is contained in:
SanyaWaffles 2020-04-24 03:56:57 -04:00 committed by Christoph Oelckers
parent 6a604f35cb
commit 994550fb00
1 changed files with 7 additions and 1 deletions

View File

@ -717,7 +717,13 @@ void C_SetDefaultKeys(const char* baseconfig)
while ((lump = fileSystem.FindLumpFullName(baseconfig, &lastlump)) != -1)
{
if (fileSystem.GetFileContainer(lump) > 0) break;
ReadBindings(lump, true);
// [SW] - We need to check to see the origin of the DEFBINDS... if it
// Comes from an IWAD/IPK3/IPK7 allow it to override the users settings...
// If it comes from a user mod however, don't.
if (fileSystem.GetFileContainer(lump) > fileSystem.GetMaxIwadNum())
ReadBindings(lump, false);
else
ReadBindings(lump, true);
}
lastlump = 0;