1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-10 09:32:29 +01:00

Fix formatting

This commit is contained in:
Gymnasiast
2019-05-02 22:39:54 +02:00
parent a6c2aed26d
commit 72ca5ee3a4

View File

@@ -169,7 +169,7 @@ void KeyboardShortcuts::GetKeyboardMapScroll(const uint8_t* keysState, int32_t*
if (!keysState[scancode])
continue;
// Check if SHIFT is either set in the shortcut key and currently,
// Check if SHIFT is either set in the shortcut key and currently pressed,
// or not set in the shortcut key and not currently pressed (in other words: check if they match).
if ((bool)(shortcutKey & SHIFT) != (keysState[SDL_SCANCODE_LSHIFT] || keysState[SDL_SCANCODE_RSHIFT]))
continue;