Little rewrite of HID input (#723)

* change hid sharedmem writing to use structures
This commit is contained in:
emmauss 2019-07-22 20:15:46 +03:00 committed by GitHub
parent e6aa4c8990
commit 9e2380cfe3
42 changed files with 682 additions and 409 deletions

View file

@ -0,0 +1,8 @@
namespace Ryujinx.HLE.Input
{
public struct Keyboard
{
public int Modifier;
public int[] Keys;
}
}