Keyboard layout independent shortcuts

This commit is contained in:
Jipok 2021-12-11 23:42:15 +05:00 committed by Guldoman
parent 41394715aa
commit 21dddf34f8
No known key found for this signature in database
GPG Key ID: C08A498EC7F1AFDD
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ static const char *get_key_name(const SDL_Event *e, char *buf) {
!(e->key.keysym.mod & KMOD_NUM)) { !(e->key.keysym.mod & KMOD_NUM)) {
return numpad[scancode - SDL_SCANCODE_KP_1]; return numpad[scancode - SDL_SCANCODE_KP_1];
} else { } else {
strcpy(buf, SDL_GetKeyName(e->key.keysym.sym)); strcpy(buf, SDL_GetScancodeName(e->key.keysym.scancode));
str_tolower(buf); str_tolower(buf);
return buf; return buf;
} }