diff --git a/src/api/system.c b/src/api/system.c index 8535bf37..013b9568 100644 --- a/src/api/system.c +++ b/src/api/system.c @@ -106,7 +106,7 @@ 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_GetKeyName(e->key.keysym.sym)); + strcpy(buf, SDL_GetScancodeName(e->key.keysym.scancode)); str_tolower(buf); return buf; }