Correct definition of the pressed key for different layouts and languages

This commit is contained in:
Jipok 2021-12-19 00:24:28 +05:00
parent 69de42b078
commit a8f7e9a35e
1 changed files with 4 additions and 1 deletions

View File

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