Skip to content

Commit

Permalink
Win32: Mapped numpad Divide key
Browse files Browse the repository at this point in the history
Both the forward slash and numpad Divide keys were being mapped to ASCII '/'.
Now the numpad key is mapped to DDKEY_DIVIDE.
  • Loading branch information
skyjake committed Apr 17, 2012
1 parent 4ad0b17 commit bc45fc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/engine/portable/src/keycode.cpp
Expand Up @@ -124,7 +124,7 @@ static void checkWin32Keymap()
//keymap[VK_SEPARATOR] = ;
keymap[VK_SUBTRACT] = DDKEY_SUBTRACT;
keymap[VK_DECIMAL] = DDKEY_DECIMAL;
keymap[VK_DIVIDE] = '/';
keymap[VK_DIVIDE] = DDKEY_DIVIDE;
keymap[VK_F1] = DDKEY_F1;
keymap[VK_F2] = DDKEY_F2;
keymap[VK_F3] = DDKEY_F3;
Expand Down

0 comments on commit bc45fc3

Please sign in to comment.