summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgerman77 <juangerman-13@hotmail.com>2021-09-20 22:02:01 +0200
committerNarr the Reg <juangerman-13@hotmail.com>2021-11-25 03:30:22 +0100
commitbf71d18af99368d7658c9519086c40e73c6abfdd (patch)
tree1040c7d8554106215b6da4637f75aabc0154d9c7
parentcommon: Rewrite and move core/frontend/input.h to common (diff)
downloadyuzu-bf71d18af99368d7658c9519086c40e73c6abfdd.tar
yuzu-bf71d18af99368d7658c9519086c40e73c6abfdd.tar.gz
yuzu-bf71d18af99368d7658c9519086c40e73c6abfdd.tar.bz2
yuzu-bf71d18af99368d7658c9519086c40e73c6abfdd.tar.lz
yuzu-bf71d18af99368d7658c9519086c40e73c6abfdd.tar.xz
yuzu-bf71d18af99368d7658c9519086c40e73c6abfdd.tar.zst
yuzu-bf71d18af99368d7658c9519086c40e73c6abfdd.zip
-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
frontend/emu_window.h
frontend/framebuffer_layout.cpp
frontend/framebuffer_layout.h
- frontend/input_interpreter.cpp
- frontend/input_interpreter.h
frontend/input.h
hardware_interrupt_manager.cpp
hardware_interrupt_manager.h
+ hid/input_interpreter.cpp
+ hid/input_interpreter.h
hle/api_version.h
hle/ipc.h
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 @@
// Refer to the license.txt file included.
#include "core/core.h"
-#include "core/frontend/input_interpreter.h"
+#include "core/hid/input_interpreter.h"
#include "core/hle/service/hid/controllers/npad.h"
#include "core/hle/service/hid/hid.h"
#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 @@
#include "common/fs/path_util.h"
#include "core/core.h"
-#include "core/frontend/input_interpreter.h"
+#include "core/hid/input_interpreter.h"
#include "input_common/keyboard.h"
#include "input_common/main.h"
#include "yuzu/applets/qt_web_browser.h"