diff options
author | Emmanuel Hansen <emmausssss@gmail.com> | 2022-12-02 13:16:43 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-02 13:16:43 +0000 |
commit | d9053bbe3745846dd758561e24dd060d76b3ad9d (patch) | |
tree | 3f37cfc7b2b074205da6f2ec89b52e3508c34c11 /Ryujinx.Ava/Common/ApplicationHelper.cs | |
parent | c25e8427aa40a4ae920496220fd1e1621eff178b (diff) |
Avalonia - Save Manager (#3476)1.1.413
* Add save manager to account selector
* add fallback to app metadata for titlename if app is not in gamelist
* Allow recovering lost accounts
Diffstat (limited to 'Ryujinx.Ava/Common/ApplicationHelper.cs')
-rw-r--r-- | Ryujinx.Ava/Common/ApplicationHelper.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Ryujinx.Ava/Common/ApplicationHelper.cs b/Ryujinx.Ava/Common/ApplicationHelper.cs index 47f4392e..7f766614 100644 --- a/Ryujinx.Ava/Common/ApplicationHelper.cs +++ b/Ryujinx.Ava/Common/ApplicationHelper.cs @@ -113,6 +113,11 @@ namespace Ryujinx.Ava.Common return; } + OpenSaveDir(saveDataId); + } + + public static void OpenSaveDir(ulong saveDataId) + { string saveRootPath = Path.Combine(_virtualFileSystem.GetNandPath(), $"user/save/{saveDataId:x16}"); if (!Directory.Exists(saveRootPath)) |