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/stubbed.cpp | |
| parent | 690013b342e6d9a9561017b2e94f42acfde25147 (diff) | |
service/hid: Remove includes of core.h and settings.h
Diffstat (limited to 'src/core/hle/service/hid/controllers/stubbed.cpp')
| -rw-r--r-- | src/core/hle/service/hid/controllers/stubbed.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/service/hid/controllers/stubbed.cpp b/src/core/hle/service/hid/controllers/stubbed.cpp index a8c93909d..b7d7a5756 100644 --- a/src/core/hle/service/hid/controllers/stubbed.cpp +++ b/src/core/hle/service/hid/controllers/stubbed.cpp @@ -5,11 +5,12 @@ #include <cstring> #include "common/common_types.h" #include "core/core_timing.h" +#include "core/hid/hid_core.h" #include "core/hle/service/hid/controllers/stubbed.h" namespace Service::HID { -Controller_Stubbed::Controller_Stubbed(Core::System& system_) : ControllerBase{system_} {} +Controller_Stubbed::Controller_Stubbed(Core::HID::HIDCore& hid_core_) : ControllerBase{hid_core_} {} Controller_Stubbed::~Controller_Stubbed() = default; void Controller_Stubbed::OnInit() {} |
