mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-23 19:45:29 +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;
|
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