Skip to content

Commit

Permalink
Win32|Fixed: Key mapping mixup between Equals and Plus
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Mar 29, 2012
1 parent ce6b959 commit 4b5a440
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/engine/portable/src/keycode.cpp
Expand Up @@ -78,7 +78,7 @@ static void checkWin32Keymap()
//keymap[VK_ACCEPT] = ;
//keymap[VK_MODECHANGE] = ;
keymap[VK_SPACE] = ' ';
keymap[VK_OEM_PLUS] = '+';
keymap[VK_OEM_PLUS] = '='; //+';
keymap[VK_OEM_COMMA] = ',';
keymap[VK_OEM_MINUS] = '-';
keymap[VK_OEM_PERIOD] = '.';
Expand Down

0 comments on commit 4b5a440

Please sign in to comment.