Skip to content

Commit

Permalink
Win32|Input|Fixed: Left control interpreted as sqbracketright
Browse files Browse the repository at this point in the history
  • Loading branch information
danij-deng committed Feb 13, 2012
1 parent f085f37 commit 4bd2e6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/engine/win32/src/sys_input.c
Expand Up @@ -174,7 +174,7 @@ static void initDIKeyToDDKeyTlat(void)
//keymap[DIK_KANJI] = ;
keymap[DIK_L] = 'l';
keymap[DIK_LBRACKET] = '[';
keymap[DIK_LCONTROL] = ']';
keymap[DIK_LCONTROL] = DDKEY_LCTRL;
keymap[DIK_LEFT] = DDKEY_LEFTARROW;
keymap[DIK_LMENU] = DDKEY_LALT; // Left Alt
keymap[DIK_LSHIFT] = DDKEY_LSHIFT;
Expand Down

0 comments on commit 4bd2e6f

Please sign in to comment.