summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/hid/hid.h
diff options
context:
space:
mode:
authorshinyquagsire23 <mtinc2@gmail.com>2018-01-15 10:21:02 +0100
committershinyquagsire23 <mtinc2@gmail.com>2018-01-15 10:30:58 +0100
commit1ea49442f9c21aa20559894ae18353cee1179c76 (patch)
tree7439d2e399cbdcd02528c85c9039c286c6586b80 /src/core/hle/service/hid/hid.h
parenthid: Remove redundant HID prefix on structs/enums (diff)
downloadyuzu-1ea49442f9c21aa20559894ae18353cee1179c76.tar
yuzu-1ea49442f9c21aa20559894ae18353cee1179c76.tar.gz
yuzu-1ea49442f9c21aa20559894ae18353cee1179c76.tar.bz2
yuzu-1ea49442f9c21aa20559894ae18353cee1179c76.tar.lz
yuzu-1ea49442f9c21aa20559894ae18353cee1179c76.tar.xz
yuzu-1ea49442f9c21aa20559894ae18353cee1179c76.tar.zst
yuzu-1ea49442f9c21aa20559894ae18353cee1179c76.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/hid/hid.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/hid/hid.h b/src/core/hle/service/hid/hid.h
index 7fd45d56f..486e64800 100644
--- a/src/core/hle/service/hid/hid.h
+++ b/src/core/hle/service/hid/hid.h
@@ -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 {