mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 14:15:41 +12:00
Merge pull request #491 from GPUCode/master
panda_sdl: Use sym instead of scancode
This commit is contained in:
commit
9884663347
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue