mirror of
https://github.com/Relintai/sdl2_frt.git
synced 2024-12-20 22:16:49 +01:00
Fixed using the wrong variable when reporting a missing SDL scancode mapping.
This commit is contained in:
parent
2e6b4b960d
commit
7db31223e6
@ -271,7 +271,7 @@ X11_InitKeyboard(_THIS)
|
|||||||
if (scancode == SDL_SCANCODE_UNKNOWN) {
|
if (scancode == SDL_SCANCODE_UNKNOWN) {
|
||||||
printf("scancode not found\n");
|
printf("scancode not found\n");
|
||||||
} else {
|
} else {
|
||||||
printf("scancode = %d (%s)\n", j, SDL_GetScancodeName(j));
|
printf("scancode = %d (%s)\n", scancode, SDL_GetScancodeName(scancode));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user