diff options
author | Isaac Marovitz <42140194+IsaacMarovitz@users.noreply.github.com> | 2023-11-16 14:09:15 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-16 16:09:15 -0300 |
commit | d11fe26aa319b352112c434167e5c43f7b6ee636 (patch) | |
tree | 2d29aa21b03475781fe1e01d76be0bd1d5d69bb6 | |
parent | dcf10561b996cdba111c5a3c3fe128781ab44021 (diff) |
Fix macOS Path (#5941)1.1.1088
-rw-r--r-- | src/Ryujinx.Common/Configuration/AppDataManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Ryujinx.Common/Configuration/AppDataManager.cs b/src/Ryujinx.Common/Configuration/AppDataManager.cs index 1dbc1f0c..2b4a594d 100644 --- a/src/Ryujinx.Common/Configuration/AppDataManager.cs +++ b/src/Ryujinx.Common/Configuration/AppDataManager.cs @@ -48,7 +48,7 @@ namespace Ryujinx.Common.Configuration string appDataPath; if (OperatingSystem.IsMacOS()) { - appDataPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Personal), "Library", "Application Support"); + appDataPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile), "Library", "Application Support"); } else { |