mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-23 12:15:37 +00:00
Merge pull request #318 from leezer3/leezer3
Fix: KP_ENTER key missing from SDL2 keymap.
This commit is contained in:
commit
24173881bb
|
@ -283,6 +283,8 @@ namespace OpenTK.Platform.SDL2
|
|||
return Key.KeypadDivide;
|
||||
case Code.KP_MULTIPLY:
|
||||
return Key.KeypadMultiply;
|
||||
case Code.KP_ENTER:
|
||||
return Key.KeypadEnter;
|
||||
|
||||
// Navigation
|
||||
case Code.UP:
|
||||
|
|
Loading…
Reference in a new issue