diff options
| author | german77 <juangerman-13@hotmail.com> | 2021-11-04 19:05:58 -0600 |
|---|---|---|
| committer | Narr the Reg <juangerman-13@hotmail.com> | 2021-11-24 20:30:27 -0600 |
| commit | e7eee36d52259321b938c350cb37a3b115953229 (patch) | |
| tree | 8ca3f8f69829f6e5e80311ecf7224455c1a11107 /src/core/hle/service/hid/controllers/gesture.cpp | |
| parent | 690013b342e6d9a9561017b2e94f42acfde25147 (diff) | |
service/hid: Remove includes of core.h and settings.h
Diffstat (limited to 'src/core/hle/service/hid/controllers/gesture.cpp')
| -rw-r--r-- | src/core/hle/service/hid/controllers/gesture.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/core/hle/service/hid/controllers/gesture.cpp b/src/core/hle/service/hid/controllers/gesture.cpp index 00df50f32..fe895c4f6 100644 --- a/src/core/hle/service/hid/controllers/gesture.cpp +++ b/src/core/hle/service/hid/controllers/gesture.cpp @@ -5,7 +5,6 @@ #include "common/logging/log.h" #include "common/math_util.h" #include "common/settings.h" -#include "core/core.h" #include "core/core_timing.h" #include "core/frontend/emu_window.h" #include "core/hid/hid_core.h" @@ -25,8 +24,8 @@ constexpr f32 Square(s32 num) { return static_cast<f32>(num * num); } -Controller_Gesture::Controller_Gesture(Core::System& system_) : ControllerBase(system_) { - console = system.HIDCore().GetEmulatedConsole(); +Controller_Gesture::Controller_Gesture(Core::HID::HIDCore& hid_core_) : ControllerBase(hid_core_) { + console = hid_core.GetEmulatedConsole(); } Controller_Gesture::~Controller_Gesture() = default; |
