diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2018-01-18 19:35:08 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2018-01-18 19:35:29 +0100 |
commit | d361f57c8064ce13a0478653050b169dc94e2e99 (patch) | |
tree | 73613b75bc4e6533455b6c3ad79c3fa39b8554fb /dinput | |
parent | 2ab18fd01bc7c46043429511a3801846b998c749 (diff) |
compat/util: retire
Adjust usages.
Diffstat (limited to 'dinput')
-rw-r--r-- | dinput/keybinding-worker.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/dinput/keybinding-worker.cpp b/dinput/keybinding-worker.cpp index 3850d80b..30d21534 100644 --- a/dinput/keybinding-worker.cpp +++ b/dinput/keybinding-worker.cpp @@ -8,9 +8,8 @@ #ifdef _WIN32 -#include "compat/sleep.hpp" -#include "compat/util.hpp" #include "keybinding-worker.hpp" +#include "compat/meta.hpp" #include <QDebug> #include <QMutexLocker> @@ -195,7 +194,7 @@ void KeybindingWorker::run() } } - portable::sleep(100); + Sleep(100); } } |