hid: Bare-minimum sharedmem input

This commit is contained in:
shinyquagsire23
2018-01-15 02:21:02 -07:00
parent bb1fcfac33
commit 1ea49442f9
2 changed files with 88 additions and 2 deletions

View File

@ -5,6 +5,7 @@
#pragma once
#include "core/hle/service/service.h"
#include "core/settings.h"
namespace Service {
namespace HID {
@ -156,8 +157,7 @@ struct KeyboardHeader {
u64 latestEntry;
u64 maxEntryIndex;
};
static_assert(sizeof(KeyboardHeader) == 0x20,
"HID keyboard header structure has incorrect size");
static_assert(sizeof(KeyboardHeader) == 0x20, "HID keyboard header structure has incorrect size");
struct KeyboardModifierKeyState {
union {