diff options
author | Mary <me@thog.eu> | 2021-05-16 17:12:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-16 17:12:14 +0200 |
commit | bec67dbef7a505fb5c4a1734be1517f67474fb4d (patch) | |
tree | 3a0353d8e0fce1c8e02544b465eb1d3aacadf125 /Ryujinx/Ui/Applet | |
parent | f48828351c759ef63e015ca9806406fab278c458 (diff) |
misc: Move configuration management to the Ryujinx project (#2269)
* Decouple configuration from Ryujinx.HLE and Ryujinx.Input
* Move Configuration to the Ryujinx project
Diffstat (limited to 'Ryujinx/Ui/Applet')
-rw-r--r-- | Ryujinx/Ui/Applet/GtkHostUiHandler.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx/Ui/Applet/GtkHostUiHandler.cs b/Ryujinx/Ui/Applet/GtkHostUiHandler.cs index d74ea3d5..c227ebd3 100644 --- a/Ryujinx/Ui/Applet/GtkHostUiHandler.cs +++ b/Ryujinx/Ui/Applet/GtkHostUiHandler.cs @@ -131,7 +131,7 @@ namespace Ryujinx.Ui.Applet public void ExecuteProgram(HLE.Switch device, ProgramSpecifyKind kind, ulong value) { - device.UserChannelPersistence.ExecuteProgram(kind, value); + device.Configuration.UserChannelPersistence.ExecuteProgram(kind, value); ((MainWindow)_parent).RendererWidget?.Exit(); } |