mirror of
https://github.com/cemu-project/Cemu.git
synced 2026-09-26 11:06:25 -05:00
unix: check current working directory for case-insensitive relative paths when no more parents
This commit is contained in:
@@ -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))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user