diff --git a/Engine/platform/osx/acplmac.cpp b/Engine/platform/osx/acplmac.cpp index 89154d46966..2bcc97c09bc 100644 --- a/Engine/platform/osx/acplmac.cpp +++ b/Engine/platform/osx/acplmac.cpp @@ -47,6 +47,7 @@ struct AGSMac : AGSPlatformDriver { FSLocation GetUserSavedgamesDirectory() override; FSLocation GetAllUsersDataDirectory() override; FSLocation GetUserConfigDirectory() override; + FSLocation GetUserGlobalConfigDirectory() override; FSLocation GetAppOutputDirectory() override; const char *GetIllegalFileChars() override; }; @@ -103,6 +104,11 @@ FSLocation AGSMac::GetUserConfigDirectory() return FSLocation(libraryApplicationSupport); } +FSLocation AGSMac::GetUserGlobalConfigDirectory() +{ + return commonDataPath; +} + FSLocation AGSMac::GetAppOutputDirectory() { return commonDataPath;