mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-06-13 01:45:45 +00:00
Fix Caps Lock and Backspace mapping for Colemak
(cherry picked from commit 906ad64d7b)
This commit is contained in:
parent
f461d91cd2
commit
a0522e4c21
1 changed files with 5 additions and 0 deletions
|
|
@ -137,6 +137,11 @@ static SDL_Scancode VKeytoScancodeFallback(WPARAM vkey)
|
|||
static SDL_Scancode VKeytoScancode(WPARAM vkey)
|
||||
{
|
||||
switch (vkey) {
|
||||
case VK_BACK:
|
||||
return SDL_SCANCODE_BACKSPACE;
|
||||
case VK_CAPITAL:
|
||||
return SDL_SCANCODE_CAPSLOCK;
|
||||
|
||||
case VK_MODECHANGE:
|
||||
return SDL_SCANCODE_MODE;
|
||||
case VK_SELECT:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue