From: LilaQ Date: Sun, 2 Feb 2025 21:12:32 +0000 (+0100) Subject: - fix for "Pen on Storyware", which would ignore any remaps, and just stay hardcoded... X-Git-Tag: v2.04~67 X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2409e64e7ab87cca95e15849db4b4877768e171f;p=picodrive.git - fix for "Pen on Storyware", which would ignore any remaps, and just stay hardcoded on RShift on keyboard and / or Select on XInput --- diff --git a/platform/libretro/libretro.c b/platform/libretro/libretro.c index 82e72451..afec1069 100644 --- a/platform/libretro/libretro.c +++ b/platform/libretro/libretro.c @@ -2272,7 +2272,7 @@ void run_events_pico(unsigned int events) emu_status_msg("Input: Pen on Pad"); } } - if (events & (1 << RETRO_DEVICE_ID_JOYPAD_SELECT)) { + if (events & (1 << RETRO_DEVICE_ID_JOYPAD_Y)) { if (pico_inp_mode == 1) { pico_inp_mode = 0; emu_status_msg("Input: D-Pad"); @@ -2366,7 +2366,7 @@ void retro_run(void) uint16_t ev = input[0] & ((1 << RETRO_DEVICE_ID_JOYPAD_L) | (1 << RETRO_DEVICE_ID_JOYPAD_R) | (1 << RETRO_DEVICE_ID_JOYPAD_X) | (1 << RETRO_DEVICE_ID_JOYPAD_SELECT) | - (1 << RETRO_DEVICE_ID_JOYPAD_START)); + (1 << RETRO_DEVICE_ID_JOYPAD_START) | (1 << RETRO_DEVICE_ID_JOYPAD_Y)); uint16_t new_ev = ev & ~pico_events; pico_events = ev; run_events_pico(new_ev);