mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
IOS/USB_KBD: Migrate TODO comment above if statement
Prevents some wonky formatting from occurring.
This commit is contained in:
@ -291,8 +291,8 @@ void USB_KBD::Update()
|
|||||||
Modifiers |= 0x10;
|
Modifiers |= 0x10;
|
||||||
if (GetAsyncKeyState(VK_RSHIFT) & 0x8000)
|
if (GetAsyncKeyState(VK_RSHIFT) & 0x8000)
|
||||||
Modifiers |= 0x20;
|
Modifiers |= 0x20;
|
||||||
if (GetAsyncKeyState(VK_MENU) &
|
// TODO: VK_MENU is for ALT, not for ALT GR (ALT GR seems to work though...)
|
||||||
0x8000) // TODO: VK_MENU is for ALT, not for ALT GR (ALT GR seems to work though...)
|
if (GetAsyncKeyState(VK_MENU) & 0x8000)
|
||||||
Modifiers |= 0x40;
|
Modifiers |= 0x40;
|
||||||
if (GetAsyncKeyState(VK_RWIN) & 0x8000)
|
if (GetAsyncKeyState(VK_RWIN) & 0x8000)
|
||||||
Modifiers |= 0x80;
|
Modifiers |= 0x80;
|
||||||
|
Reference in New Issue
Block a user