diff options
author | emmauss <emmausssss@gmail.com> | 2019-07-22 20:15:46 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-22 20:15:46 +0300 |
commit | d254548548398977a45dbfc03f2cc091c5a74f03 (patch) | |
tree | e153a29676f6f83d44b25cc42ecd1efc8cc701e6 /Ryujinx/Configuration.cs | |
parent | 1f3a34dd7a5977fc340de310b2109493e5e6973f (diff) |
Little rewrite of HID input (#723)
* change hid sharedmem writing to use structures
Diffstat (limited to 'Ryujinx/Configuration.cs')
-rw-r--r-- | Ryujinx/Configuration.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Ryujinx/Configuration.cs b/Ryujinx/Configuration.cs index 77895ac8..72f507de 100644 --- a/Ryujinx/Configuration.cs +++ b/Ryujinx/Configuration.cs @@ -120,7 +120,7 @@ namespace Ryujinx /// <summary> /// The primary controller's type /// </summary> - public HidControllerType ControllerType { get; private set; } + public ControllerStatus ControllerType { get; private set; } /// <summary> /// Enable or disable keyboard support (Independent from controllers binding) @@ -135,7 +135,7 @@ namespace Ryujinx /// <summary> /// Controller control bindings /// </summary> - public NpadController GamepadControls { get; private set; } + public UI.Input.NpadController GamepadControls { get; private set; } /// <summary> /// Loads a configuration file from disk |