From 2de33bda4758281b8c25d2786fd68769453bee3d Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Wed, 1 Nov 2017 13:40:12 +0100 Subject: dinput: skip double negation for `bool' values --- dinput/keybinding-worker.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'dinput') diff --git a/dinput/keybinding-worker.cpp b/dinput/keybinding-worker.cpp index fec28a03..3850d80b 100644 --- a/dinput/keybinding-worker.cpp +++ b/dinput/keybinding-worker.cpp @@ -158,9 +158,9 @@ void KeybindingWorker::run() default: { Key k; - k.shift = !!(keystate[DIK_LSHIFT] | keystate[DIK_RSHIFT]); - k.alt = !!(keystate[DIK_LALT] | keystate[DIK_RALT]); - k.ctrl = !!(keystate[DIK_LCONTROL] | keystate[DIK_RCONTROL]); + k.shift = keystate[DIK_LSHIFT] | keystate[DIK_RSHIFT]; + k.alt = keystate[DIK_LALT] | keystate[DIK_RALT]; + k.ctrl = keystate[DIK_LCONTROL] | keystate[DIK_RCONTROL]; k.keycode = idx; k.held = held; @@ -180,9 +180,9 @@ void KeybindingWorker::run() joy_fn f = [&](const QString& guid, int idx, bool held) { Key k; k.keycode = idx; - k.shift = !!(keystate[DIK_LSHIFT] | keystate[DIK_RSHIFT]); - k.alt = !!(keystate[DIK_LALT] | keystate[DIK_RALT]); - k.ctrl = !!(keystate[DIK_LCONTROL] | keystate[DIK_RCONTROL]); + k.shift = keystate[DIK_LSHIFT] | keystate[DIK_RSHIFT]; + k.alt = keystate[DIK_LALT] | keystate[DIK_RALT]; + k.ctrl = keystate[DIK_LCONTROL] | keystate[DIK_RCONTROL]; k.guid = guid; k.held = held; -- cgit v1.2.3