diff options
Diffstat (limited to 'Ryujinx/Ui/ControllerWindow.cs')
| -rw-r--r-- | Ryujinx/Ui/ControllerWindow.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Ryujinx/Ui/ControllerWindow.cs b/Ryujinx/Ui/ControllerWindow.cs index 9518ba98..1d879eb5 100644 --- a/Ryujinx/Ui/ControllerWindow.cs +++ b/Ryujinx/Ui/ControllerWindow.cs @@ -1,5 +1,6 @@ using Gtk; using OpenTK.Input; +using Ryujinx.Common.Configuration; using Ryujinx.Common.Configuration.Hid; using Ryujinx.Common.Utilities; using Ryujinx.Configuration; @@ -602,7 +603,7 @@ namespace Ryujinx.Ui private string GetProfileBasePath() { - string path = System.IO.Path.Combine(_virtualFileSystem.GetBasePath(), "profiles"); + string path = AppDataManager.ProfilesDirPath; if (_inputDevice.ActiveId.StartsWith("keyboard")) { |
