From 71d334fe7903a1920a75c86d38c528b87a975860 Mon Sep 17 00:00:00 2001 From: AnyOldName3 Date: Thu, 19 Jun 2025 19:55:26 +0100 Subject: [PATCH] Fix MacOS even more --- 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 8a18ed144a..191f3b15a6 100644 --- a/components/files/macospath.cpp +++ b/components/files/macospath.cpp @@ -97,7 +97,7 @@ namespace Files std::filesystem::path MacOsPath::getLocalPath() const { - return getBinaryPath() / "../Resources"; + return getBinaryPath().parent_path().parent_path() / "Resources"; } std::filesystem::path MacOsPath::getGlobalDataPath() const