mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-07-31 08:57:10 +02:00
Fix macOS Path (#5941)
This commit is contained in:
parent
d40b0f5631
commit
6dfd8619d7
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue