IOS/USB_KBD: Migrate TODO comment above if statement

Prevents some wonky formatting from occurring.
This commit is contained in:
Lioncash 2019-05-31 08:30:32 -04:00
parent e8cc1b8d8a
commit cc54652fb3
1 changed files with 2 additions and 2 deletions

View File

@ -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;