mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-15 00:51:24 +00:00
Add the check to the other loop per Graf's request.
This commit is contained in:
parent
6a604f35cb
commit
994550fb00
1 changed files with 7 additions and 1 deletions
|
@ -717,7 +717,13 @@ void C_SetDefaultKeys(const char* baseconfig)
|
||||||
while ((lump = fileSystem.FindLumpFullName(baseconfig, &lastlump)) != -1)
|
while ((lump = fileSystem.FindLumpFullName(baseconfig, &lastlump)) != -1)
|
||||||
{
|
{
|
||||||
if (fileSystem.GetFileContainer(lump) > 0) break;
|
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;
|
lastlump = 0;
|
||||||
|
|
Loading…
Reference in a new issue