diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2015-10-11 06:59:54 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2015-10-11 06:59:54 +0200 |
commit | 79a415aad234fe8718d6571375c1af51a1edf2a5 (patch) | |
tree | f08816ff89bf902b499e036cd72e9cd2724ca6df /opentrack | |
parent | a4c5f265b42ba733fa9c3973fb7682e84e605f03 (diff) | |
parent | 9ba347dc2bcb955f81841d76011612bede781ede (diff) |
Merge branch 'unstable' into trackhat
* unstable:
shortcuts: fix short keypresses
timer: fix overflow
Diffstat (limited to 'opentrack')
-rw-r--r-- | opentrack/shortcuts.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opentrack/shortcuts.cpp b/opentrack/shortcuts.cpp index a3c0773b..ba2b7c8e 100644 --- a/opentrack/shortcuts.cpp +++ b/opentrack/shortcuts.cpp @@ -107,7 +107,7 @@ void KeybindingWorker::run() { } // keypresses get dropped with high values - Sleep(8); + Sleep(4); } } #endif |