diff options
| author | 2018-08-23 23:20:33 -0400 | |
|---|---|---|
| committer | 2018-08-23 23:20:35 -0400 | |
| commit | ec59e4a6c5100f2a0076f75078b7c8384642a2e3 (patch) | |
| tree | 6868ad09edf4861f30539f9e5c1c71acab5de754 /src | |
| parent | Port #4013 from Citra: "Init logging sooner so we dont miss some logs on star... (diff) | |
| download | yuzu-ec59e4a6c5100f2a0076f75078b7c8384642a2e3.tar.gz yuzu-ec59e4a6c5100f2a0076f75078b7c8384642a2e3.tar.xz yuzu-ec59e4a6c5100f2a0076f75078b7c8384642a2e3.zip | |
hid: Move core include to cpp file
This isn't required to be in the header. Instead, directly include what
this header needs and move it to the cpp file where it belongs.
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 | ||