Fix Caps Lock and Backspace mapping for Colemak

This commit is contained in:
Zhuoran
2023-07-21 10:06:54 +08:00
committed by Sam Lantinga
parent f1690e265e
commit 906ad64d7b

View File

@@ -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: