summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authoriwubcode <iwubcode@users.noreply.github.com>2021-03-18 11:03:12 -0500
committeriwubcode <iwubcode@users.noreply.github.com>2021-03-18 17:54:12 -0500
commit28e880efb628598090c715a7783a8dcbbbf18d50 (patch)
tree2c7dbaed80f9ee1d1b141fe015178f6ec0a80025 /Source/Core
parent425ee13d3509d36c96f151c6c4eebc732eb7796b (diff)
DolphinQt: update hotkeyscheduler to run at 200hz, giving more precision for FreeLook motion devices
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/DolphinQt/HotkeyScheduler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DolphinQt/HotkeyScheduler.cpp b/Source/Core/DolphinQt/HotkeyScheduler.cpp
index 1f310383fa..7ac02353cb 100644
--- a/Source/Core/DolphinQt/HotkeyScheduler.cpp
+++ b/Source/Core/DolphinQt/HotkeyScheduler.cpp
@@ -139,7 +139,7 @@ void HotkeyScheduler::Run()
while (!m_stop_requested.IsSet())
{
- Common::SleepCurrentThread(1000 / 60);
+ Common::SleepCurrentThread(5);
g_controller_interface.SetCurrentInputChannel(ciface::InputChannel::FreeLook);
g_controller_interface.UpdateInput();