diff options
Diffstat (limited to 'src/core')
| -rw-r--r-- | src/core/CMakeLists.txt | 4 | ||||
| -rw-r--r-- | src/core/hid/input_interpreter.cpp (renamed from src/core/frontend/input_interpreter.cpp) | 2 | ||||
| -rw-r--r-- | src/core/hid/input_interpreter.h (renamed from src/core/frontend/input_interpreter.h) | 0 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index 9f0fbba2d..14ba986d3 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt | |||
| @@ -132,11 +132,11 @@ add_library(core STATIC | |||
| 132 | frontend/emu_window.h | 132 | frontend/emu_window.h |
| 133 | frontend/framebuffer_layout.cpp | 133 | frontend/framebuffer_layout.cpp |
| 134 | frontend/framebuffer_layout.h | 134 | frontend/framebuffer_layout.h |
| 135 | frontend/input_interpreter.cpp | ||
| 136 | frontend/input_interpreter.h | ||
| 137 | frontend/input.h | 135 | frontend/input.h |
| 138 | hardware_interrupt_manager.cpp | 136 | hardware_interrupt_manager.cpp |
| 139 | hardware_interrupt_manager.h | 137 | hardware_interrupt_manager.h |
| 138 | hid/input_interpreter.cpp | ||
| 139 | hid/input_interpreter.h | ||
| 140 | hle/api_version.h | 140 | hle/api_version.h |
| 141 | hle/ipc.h | 141 | hle/ipc.h |
| 142 | hle/ipc_helpers.h | 142 | hle/ipc_helpers.h |
diff --git a/src/core/frontend/input_interpreter.cpp b/src/core/hid/input_interpreter.cpp index 9f6a90e8f..c33d8a11a 100644 --- a/src/core/frontend/input_interpreter.cpp +++ b/src/core/hid/input_interpreter.cpp | |||
| @@ -3,7 +3,7 @@ | |||
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include "core/core.h" | 5 | #include "core/core.h" |
| 6 | #include "core/frontend/input_interpreter.h" | 6 | #include "core/hid/input_interpreter.h" |
| 7 | #include "core/hle/service/hid/controllers/npad.h" | 7 | #include "core/hle/service/hid/controllers/npad.h" |
| 8 | #include "core/hle/service/hid/hid.h" | 8 | #include "core/hle/service/hid/hid.h" |
| 9 | #include "core/hle/service/sm/sm.h" | 9 | #include "core/hle/service/sm/sm.h" |
diff --git a/src/core/frontend/input_interpreter.h b/src/core/hid/input_interpreter.h index 9495e3daf..9495e3daf 100644 --- a/src/core/frontend/input_interpreter.h +++ b/src/core/hid/input_interpreter.h | |||