diff options
| author | Mary <me@thog.eu> | 2021-05-02 22:01:30 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-02 22:01:30 +0200 |
| commit | 3443023a0844822f4f320ea4f75d9522fb5bbc01 (patch) | |
| tree | a86a0d7b7d3af8d15daa6a94af680f9eff79593b /Ryujinx.HLE/HOS/Applets/Controller/ControllerApplet.cs | |
| parent | 0e9823d7e6668731598b6f04b551efa801969e7b (diff) | |
hid: Rewrite shared memory management (#2257)
* hid: Rewrite shared memory management
This entirely rewrite our ancient (and original) HID shared memory
interface to be more usable and accurate.
HID update logics were updated to reflect those changes but should work
still the same way it previously did.
This need heavy testing just in case to avoid possible regressions.
* Silence warnings
* Address gdkchan's comments
* Address Ac_K's comments
* Address one missing nit
Diffstat (limited to 'Ryujinx.HLE/HOS/Applets/Controller/ControllerApplet.cs')
| -rw-r--r-- | Ryujinx.HLE/HOS/Applets/Controller/ControllerApplet.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Ryujinx.HLE/HOS/Applets/Controller/ControllerApplet.cs b/Ryujinx.HLE/HOS/Applets/Controller/ControllerApplet.cs index fd89e8f6..0597cf9b 100644 --- a/Ryujinx.HLE/HOS/Applets/Controller/ControllerApplet.cs +++ b/Ryujinx.HLE/HOS/Applets/Controller/ControllerApplet.cs @@ -4,6 +4,7 @@ using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using Ryujinx.Common.Logging; using Ryujinx.HLE.HOS.Services.Hid; +using Ryujinx.HLE.HOS.Services.Hid.Types; using Ryujinx.HLE.HOS.Services.Am.AppletAE; using static Ryujinx.HLE.HOS.Services.Hid.HidServer.HidUtils; |
