1
0
forked from MeloNX/MeloNX

Fix macOS Path (#5941)

This commit is contained in:
Isaac Marovitz 2023-11-16 14:09:15 -05:00 committed by GitHub
parent d40b0f5631
commit 6dfd8619d7

View File

@ -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
{