diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2017-09-23 19:23:01 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2017-09-23 19:23:01 +0200 |
commit | b9e46ba7ee08268052660f2ff98ffc0f211e8c08 (patch) | |
tree | a086a8b01d6a89d17c18fab21eafc32b49c7a7ec /dinput | |
parent | 58e7afe1fef89fcbed2d8e3ff0502f97f811bf3a (diff) |
play with thread priorities
Diffstat (limited to 'dinput')
-rw-r--r-- | dinput/keybinding-worker.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dinput/keybinding-worker.cpp b/dinput/keybinding-worker.cpp index 042f01a5..dbe3d75e 100644 --- a/dinput/keybinding-worker.cpp +++ b/dinput/keybinding-worker.cpp @@ -77,7 +77,7 @@ bool KeybindingWorker::init() KeybindingWorker::KeybindingWorker() : dinkeyboard(nullptr), din(dinput_handle::make_di()) { if (init()) - start(); + start(QThread::HighPriority); } KeybindingWorker& KeybindingWorker::make() |