- fixed missing check for bad IWADs.

This commit is contained in:
Christoph Oelckers 2017-08-27 09:57:37 +02:00
parent 2e670ae71d
commit ca47b138be
1 changed files with 8 additions and 5 deletions

View File

@ -597,6 +597,8 @@ int FIWadManager::IdentifyVersion (TArray<FString> &wadfiles, const char *iwad,
{
bool picked = false;
for (int j = 0; j < (int)mFoundWads.Size(); j++)
{
if (mFoundWads[j].mInfoIndex >= 0)
{
if (mIWadInfos[mFoundWads[j].mInfoIndex].Name.Compare(mOrderNames[i]) == 0)
{
@ -609,6 +611,7 @@ int FIWadManager::IdentifyVersion (TArray<FString> &wadfiles, const char *iwad,
}
}
}
}
// What's left is IWADs with their own IWADINFO. Copy those in order of discovery.
for (auto &entry : mFoundWads)
{