New UI Interface

This commit is contained in:
Stossy11 2024-12-09 18:17:58 +11:00
parent fdbcc483b3
commit e81ee8f8bf
15 changed files with 421 additions and 233 deletions

View file

@ -63,8 +63,16 @@ namespace Ryujinx.Common.Configuration
{
appDataPath = Environment.GetFolderPath(Environment.SpecialFolder.UserProfile);
}
string userProfilePath;
if (OperatingSystem.IsIOS())
{
userProfilePath = appDataPath;
}
else
{
userProfilePath = Path.Combine(appDataPath, DefaultBaseDir);
}
string userProfilePath = Path.Combine(appDataPath, DefaultBaseDir);
string portablePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, DefaultPortableDir);
if (Directory.Exists(portablePath))