diff options
| author | german77 <juangerman-13@hotmail.com> | 2022-11-05 11:40:19 -0600 |
|---|---|---|
| committer | german77 <juangerman-13@hotmail.com> | 2022-11-19 08:44:42 -0600 |
| commit | aa075a0c08335b1d145b2885eb0ba2f395b74f90 (patch) | |
| tree | a7d2cd968132bad55b1f923e79dcb49e78d2273a /src/core/hle/service/hid/hid.h | |
| parent | 38c48cf8d896f28f7424b28265110c34f69d2369 (diff) | |
service: hid: Only overclock npad controllers
Diffstat (limited to 'src/core/hle/service/hid/hid.h')
| -rw-r--r-- | src/core/hle/service/hid/hid.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/hle/service/hid/hid.h b/src/core/hle/service/hid/hid.h index 340d26fdc..b7c2a23ef 100644 --- a/src/core/hle/service/hid/hid.h +++ b/src/core/hle/service/hid/hid.h @@ -71,12 +71,14 @@ private: void GetSharedMemoryHandle(Kernel::HLERequestContext& ctx); void UpdateControllers(std::uintptr_t user_data, std::chrono::nanoseconds ns_late); + void UpdateNpad(std::uintptr_t user_data, std::chrono::nanoseconds ns_late); void UpdateMouseKeyboard(std::uintptr_t user_data, std::chrono::nanoseconds ns_late); void UpdateMotion(std::uintptr_t user_data, std::chrono::nanoseconds ns_late); KernelHelpers::ServiceContext& service_context; - std::shared_ptr<Core::Timing::EventType> pad_update_event; + std::shared_ptr<Core::Timing::EventType> npad_update_event; + std::shared_ptr<Core::Timing::EventType> default_update_event; std::shared_ptr<Core::Timing::EventType> mouse_keyboard_update_event; std::shared_ptr<Core::Timing::EventType> motion_update_event; |
