diff options
| author | 2018-08-27 15:42:52 -0400 | |
|---|---|---|
| committer | 2018-08-27 15:42:52 -0400 | |
| commit | 34a447d24ef3f29e83b73b24072128ebe2addb2f (patch) | |
| tree | d28c6d3473e07dac290088d790423c74b9dba66e /src | |
| parent | Merge pull request #1171 from lioncash/true (diff) | |
| parent | hid: Move core include to cpp file (diff) | |
| download | yuzu-34a447d24ef3f29e83b73b24072128ebe2addb2f.tar.gz yuzu-34a447d24ef3f29e83b73b24072128ebe2addb2f.tar.xz yuzu-34a447d24ef3f29e83b73b24072128ebe2addb2f.zip | |
Merge pull request #1168 from lioncash/header
hid: Move core include to cpp file
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/service/hid/hid.cpp | 1 | ||||
| -rw-r--r-- | src/core/hle/service/hid/hid.h | 4 |
2 files changed, 4 insertions, 1 deletions
diff --git a/src/core/hle/service/hid/hid.cpp b/src/core/hle/service/hid/hid.cpp index 970942d3f..c0ba330dc 100644 --- a/src/core/hle/service/hid/hid.cpp +++ b/src/core/hle/service/hid/hid.cpp | |||
| @@ -17,6 +17,7 @@ | |||
| 17 | #include "core/hle/service/hid/irs.h" | 17 | #include "core/hle/service/hid/irs.h" |
| 18 | #include "core/hle/service/hid/xcd.h" | 18 | #include "core/hle/service/hid/xcd.h" |
| 19 | #include "core/hle/service/service.h" | 19 | #include "core/hle/service/service.h" |
| 20 | #include "core/settings.h" | ||
| 20 | 21 | ||
| 21 | namespace Service::HID { | 22 | namespace Service::HID { |
| 22 | 23 | ||
diff --git a/src/core/hle/service/hid/hid.h b/src/core/hle/service/hid/hid.h index e298f23a6..88d926808 100644 --- a/src/core/hle/service/hid/hid.h +++ b/src/core/hle/service/hid/hid.h | |||
| @@ -4,8 +4,10 @@ | |||
| 4 | 4 | ||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include <array> | ||
| 8 | #include "common/bit_field.h" | ||
| 9 | #include "common/common_types.h" | ||
| 7 | #include "core/hle/service/service.h" | 10 | #include "core/hle/service/service.h" |
| 8 | #include "core/settings.h" | ||
| 9 | 11 | ||
| 10 | namespace Service::HID { | 12 | namespace Service::HID { |
| 11 | 13 | ||