diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-08-22 00:17:03 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-08-22 00:46:00 +0300 |
commit | e26c01fe66bc698555fdee9d681b3abd6822848a (patch) | |
tree | e74773ce1c66a714ee933d8228d94d205a37aa43 /src/input/inputmanager.cpp | |
parent | d181a2fb30ac73173fba851d4b2f7ca6f7d46ca0 (diff) | |
download | ManaVerse-e26c01fe66bc698555fdee9d681b3abd6822848a.tar.gz ManaVerse-e26c01fe66bc698555fdee9d681b3abd6822848a.tar.bz2 ManaVerse-e26c01fe66bc698555fdee9d681b3abd6822848a.tar.xz ManaVerse-e26c01fe66bc698555fdee9d681b3abd6822848a.zip |
Remove some parentheses.
Diffstat (limited to 'src/input/inputmanager.cpp')
-rw-r--r-- | src/input/inputmanager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input/inputmanager.cpp b/src/input/inputmanager.cpp index 814e2ac76..b0aa18da5 100644 --- a/src/input/inputmanager.cpp +++ b/src/input/inputmanager.cpp @@ -816,8 +816,8 @@ bool InputManager::checkKey(const InputActionData *restrict const key) const if ((key == nullptr) || (key->condition & mMask) != key->condition) return false; - return (key->modKeyIndex == InputAction::NO_VALUE - || isActionActive0(key->modKeyIndex)); + return key->modKeyIndex == InputAction::NO_VALUE + || isActionActive0(key->modKeyIndex); } bool InputManager::invokeKey(const InputActionData *restrict const key, |