mirror of
https://github.com/cemu-project/Cemu.git
synced 2026-04-08 17:31:29 -06:00
unix: check current working directory for case-insensitive relative paths when no more parents
This commit is contained in:
parent
a1d47c37b6
commit
72b5740ed4
@ -8,7 +8,7 @@ fs::path findPathCI(const fs::path& path)
|
||||
fs::path fName = path.filename();
|
||||
fs::path parentPath = path.parent_path();
|
||||
if (parentPath.empty())
|
||||
return path;
|
||||
parentPath = ".";
|
||||
|
||||
if (!fs::exists(parentPath))
|
||||
{
|
||||
|
||||
Loading…
Reference in New Issue
Block a user