diff options
| author | iwubcode <iwubcode@users.noreply.github.com> | 2021-03-18 11:03:12 -0500 |
|---|---|---|
| committer | iwubcode <iwubcode@users.noreply.github.com> | 2021-03-18 17:54:12 -0500 |
| commit | 28e880efb628598090c715a7783a8dcbbbf18d50 (patch) | |
| tree | 2c7dbaed80f9ee1d1b141fe015178f6ec0a80025 /Source/Core | |
| parent | 425ee13d3509d36c96f151c6c4eebc732eb7796b (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.cpp | 2 |
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(); |
