Merge pull request #491 from GPUCode/master

panda_sdl: Use sym instead of scancode
This commit is contained in:
wheremyfoodat 2024-04-08 23:44:43 +00:00 committed by GitHub
commit 9884663347
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -95,7 +95,7 @@ void FrontendSDL::run() {
case SDL_KEYDOWN: {
if (emu.romType == ROMType::None) break;
u32 key = getMapping(event.key.keysym.scancode);
u32 key = getMapping(event.key.keysym.sym);
if (key != HID::Keys::Null) {
switch (key) {
case HID::Keys::CirclePadRight:
@ -138,7 +138,7 @@ void FrontendSDL::run() {
case SDL_KEYUP: {
if (emu.romType == ROMType::None) break;
u32 key = getMapping(event.key.keysym.scancode);
u32 key = getMapping(event.key.keysym.sym);
if (key != HID::Keys::Null) {
switch (key) {
// Err this is probably not ideal