mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-26 15:45:42 +00:00
Settings: Use RealPath() for directories
This commit is contained in:
parent
e2d87f554b
commit
fec36471b8
|
@ -1856,6 +1856,7 @@ static std::string LoadPathFromSettings(SettingsInterface& si, const std::string
|
||||||
value = def;
|
value = def;
|
||||||
if (!Path::IsAbsolute(value))
|
if (!Path::IsAbsolute(value))
|
||||||
value = Path::Combine(root, value);
|
value = Path::Combine(root, value);
|
||||||
|
value = Path::RealPath(value);
|
||||||
return value;
|
return value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue