mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-23 15:35:34 +00:00
Fix: KP_ENTER key missing from SDL2 keymap.
This commit is contained in:
parent
bf74b7ea15
commit
a2ece2c9fb
|
@ -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