mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-02-03 12:41:10 +00:00
[SDL2] Corrected win/alt key mapping (was swapped previously)
This commit is contained in:
parent
56e4b3cc85
commit
14d53010b0
|
@ -62,8 +62,8 @@ namespace OpenTK.Platform.SDL2
|
|||
Add(Code.CAPSLOCK, Key.CapsLock);
|
||||
Add(Code.LCTRL, Key.ControlLeft);
|
||||
Add(Code.LSHIFT, Key.ShiftLeft);
|
||||
Add(Code.LALT, Key.WinLeft);
|
||||
Add(Code.MENU, Key.AltLeft);
|
||||
Add(Code.LALT, Key.AltLeft);
|
||||
Add(Code.MENU, Key.WinLeft);
|
||||
Add(Code.SPACE, Key.Space);
|
||||
Add(Code.RALT, Key.AltRight);
|
||||
//Add(Code., Key.WinRight);
|
||||
|
|
Loading…
Reference in a new issue