mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-23 18:55:50 +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;
|
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:
|
||||||
|
|
Loading…
Reference in a new issue