1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-10-15 11:56:33 +00:00

Fix getLocalPath for MacOS

This commit is contained in:
AnyOldName3 2025-06-19 16:32:21 +01:00
parent 323ee5f79d
commit bee9716262

View file

@ -97,7 +97,7 @@ namespace Files
std::filesystem::path MacOsPath::getLocalPath() const
{
return std::filesystem::path("../Resources/");
return getBinaryPath() / "../Resources";
}
std::filesystem::path MacOsPath::getGlobalDataPath() const