summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/hid/hid.cpp
diff options
context:
space:
mode:
authorKelebek1 <eeeedddccc@hotmail.co.uk>2022-07-10 09:29:37 +0200
committerKelebek1 <eeeedddccc@hotmail.co.uk>2022-07-10 09:29:37 +0200
commitb23c6b456c3fd09a4dd04c4174f784f73b7513bc (patch)
treec431a3b1ee04fb4da60e08ab21d78a5813e9b528 /src/core/hle/service/hid/hid.cpp
parentRework CoreTiming (diff)
downloadyuzu-b23c6b456c3fd09a4dd04c4174f784f73b7513bc.tar
yuzu-b23c6b456c3fd09a4dd04c4174f784f73b7513bc.tar.gz
yuzu-b23c6b456c3fd09a4dd04c4174f784f73b7513bc.tar.bz2
yuzu-b23c6b456c3fd09a4dd04c4174f784f73b7513bc.tar.lz
yuzu-b23c6b456c3fd09a4dd04c4174f784f73b7513bc.tar.xz
yuzu-b23c6b456c3fd09a4dd04c4174f784f73b7513bc.tar.zst
yuzu-b23c6b456c3fd09a4dd04c4174f784f73b7513bc.zip
Diffstat (limited to 'src/core/hle/service/hid/hid.cpp')
-rw-r--r--src/core/hle/service/hid/hid.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/core/hle/service/hid/hid.cpp b/src/core/hle/service/hid/hid.cpp
index 88fcd53ec..89bb12442 100644
--- a/src/core/hle/service/hid/hid.cpp
+++ b/src/core/hle/service/hid/hid.cpp
@@ -97,11 +97,10 @@ IAppletResource::IAppletResource(Core::System& system_,
return std::nullopt;
});
- system.CoreTiming().ScheduleLoopingEvent(std::chrono::nanoseconds(0), pad_update_ns,
- pad_update_event);
- system.CoreTiming().ScheduleLoopingEvent(std::chrono::nanoseconds(0), mouse_keyboard_update_ns,
+ system.CoreTiming().ScheduleLoopingEvent(pad_update_ns, pad_update_ns, pad_update_event);
+ system.CoreTiming().ScheduleLoopingEvent(mouse_keyboard_update_ns, mouse_keyboard_update_ns,
mouse_keyboard_update_event);
- system.CoreTiming().ScheduleLoopingEvent(std::chrono::nanoseconds(0), motion_update_ns,
+ system.CoreTiming().ScheduleLoopingEvent(motion_update_ns, motion_update_ns,
motion_update_event);
system.HIDCore().ReloadInputDevices();