From 007582595be1282fe0eb0dd15df50e77d202ae96 Mon Sep 17 00:00:00 2001 From: Gymnasiast Date: Thu, 17 Apr 2025 21:20:29 +0200 Subject: [PATCH] macOS: Look in /Applications for RCT Classic(+) installs --- src/openrct2/platform/Platform.macOS.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openrct2/platform/Platform.macOS.mm b/src/openrct2/platform/Platform.macOS.mm index 80a9edf710..db34669bf2 100644 --- a/src/openrct2/platform/Platform.macOS.mm +++ b/src/openrct2/platform/Platform.macOS.mm @@ -289,7 +289,7 @@ namespace OpenRCT2::Platform std::vector GetSearchablePathsRCT2() { - return {}; + return { "/Applications" }; } } // namespace OpenRCT2::Platform