Skip to content

Commit

Permalink
[SDL2] Corrected win/alt key mapping (was swapped previously)
Browse files Browse the repository at this point in the history
  • Loading branch information
thefiddler committed Feb 25, 2014
1 parent 56e4b3c commit 14d5301
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/OpenTK/Platform/SDL2/Sdl2KeyMap.cs
Expand Up @@ -62,8 +62,8 @@ public Sdl2KeyMap()
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);
Expand Down

0 comments on commit 14d5301

Please sign in to comment.