Merge pull request #318 from leezer3/leezer3

Fix: KP_ENTER key missing from SDL2 keymap.
This commit is contained in:
Fraser Waters 2015-12-06 12:36:08 +00:00
commit 24173881bb

View file

@ -283,6 +283,8 @@ namespace OpenTK.Platform.SDL2
return Key.KeypadDivide; return Key.KeypadDivide;
case Code.KP_MULTIPLY: case Code.KP_MULTIPLY:
return Key.KeypadMultiply; return Key.KeypadMultiply;
case Code.KP_ENTER:
return Key.KeypadEnter;
// Navigation // Navigation
case Code.UP: case Code.UP: