mirror of
https://github.com/ZDoom/qzdoom.git
synced 2025-01-18 23:21:41 +00:00
Fixed IWAD detection for case-sensitive file systems
https://forum.zdoom.org/viewtopic.php?t=57770
This commit is contained in:
parent
dd0bc02eec
commit
85ffeebb96
1 changed files with 2 additions and 2 deletions
|
@ -429,7 +429,7 @@ void FIWadManager::AddIWADCandidates(const char *dir)
|
||||||
{
|
{
|
||||||
if (!stricmp(name, FindName))
|
if (!stricmp(name, FindName))
|
||||||
{
|
{
|
||||||
mFoundWads.Push(FFoundWadInfo{ slasheddir + name, "", -1 });
|
mFoundWads.Push(FFoundWadInfo{ slasheddir + FindName, "", -1 });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -736,4 +736,4 @@ const FIWADInfo *FIWadManager::FindIWAD(TArray<FString> &wadfiles, const char *i
|
||||||
}
|
}
|
||||||
I_SetIWADInfo();
|
I_SetIWADInfo();
|
||||||
return iwad_info;
|
return iwad_info;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue