summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/hid/hid.h
diff options
context:
space:
mode:
authorgerman77 <juangerman-13@hotmail.com>2022-11-05 18:40:19 +0100
committergerman77 <juangerman-13@hotmail.com>2022-11-19 15:44:42 +0100
commitaa075a0c08335b1d145b2885eb0ba2f395b74f90 (patch)
treea7d2cd968132bad55b1f923e79dcb49e78d2273a /src/core/hle/service/hid/hid.h
parentcore: hid: Implement true multitouch support (diff)
downloadyuzu-aa075a0c08335b1d145b2885eb0ba2f395b74f90.tar
yuzu-aa075a0c08335b1d145b2885eb0ba2f395b74f90.tar.gz
yuzu-aa075a0c08335b1d145b2885eb0ba2f395b74f90.tar.bz2
yuzu-aa075a0c08335b1d145b2885eb0ba2f395b74f90.tar.lz
yuzu-aa075a0c08335b1d145b2885eb0ba2f395b74f90.tar.xz
yuzu-aa075a0c08335b1d145b2885eb0ba2f395b74f90.tar.zst
yuzu-aa075a0c08335b1d145b2885eb0ba2f395b74f90.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/hid/hid.h4
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;