mirror of
https://github.com/ZDoom/qzdoom.git
synced 2025-01-19 07:30:59 +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 });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue