From bee9716262321f6f2067718d63e41797f153d65e Mon Sep 17 00:00:00 2001 From: AnyOldName3 Date: Thu, 19 Jun 2025 16:32:21 +0100 Subject: [PATCH] Fix getLocalPath for MacOS --- components/files/macospath.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/files/macospath.cpp b/components/files/macospath.cpp index f98bb72a8f..8a18ed144a 100644 --- a/components/files/macospath.cpp +++ b/components/files/macospath.cpp @@ -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