summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/core/CMakeLists.txt4
-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
-rw-r--r--src/yuzu/applets/qt_web_browser.cpp2
4 files changed, 4 insertions, 4 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
diff --git a/src/yuzu/applets/qt_web_browser.cpp b/src/yuzu/applets/qt_web_browser.cpp
index da8c6882a..24d72a496 100644
--- a/src/yuzu/applets/qt_web_browser.cpp
+++ b/src/yuzu/applets/qt_web_browser.cpp
@@ -15,7 +15,7 @@
15 15
16#include "common/fs/path_util.h" 16#include "common/fs/path_util.h"
17#include "core/core.h" 17#include "core/core.h"
18#include "core/frontend/input_interpreter.h" 18#include "core/hid/input_interpreter.h"
19#include "input_common/keyboard.h" 19#include "input_common/keyboard.h"
20#include "input_common/main.h" 20#include "input_common/main.h"
21#include "yuzu/applets/qt_web_browser.h" 21#include "yuzu/applets/qt_web_browser.h"