From fec36471b8635698cd5df876acfedcf9d0ba4959 Mon Sep 17 00:00:00 2001 From: Stenzek Date: Thu, 11 Apr 2024 14:44:43 +1000 Subject: [PATCH] Settings: Use RealPath() for directories --- src/core/settings.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/settings.cpp b/src/core/settings.cpp index 09afc3cba..71d06760e 100644 --- a/src/core/settings.cpp +++ b/src/core/settings.cpp @@ -1856,6 +1856,7 @@ static std::string LoadPathFromSettings(SettingsInterface& si, const std::string value = def; if (!Path::IsAbsolute(value)) value = Path::Combine(root, value); + value = Path::RealPath(value); return value; }