- fix for "Pen on Storyware", which would ignore any remaps, and just stay hardcoded...
authorLilaQ <teh.lilaq@gmail.com>
Sun, 2 Feb 2025 21:12:32 +0000 (22:12 +0100)
committeririxxxx <31696370+irixxxx@users.noreply.github.com>
Sun, 2 Feb 2025 23:06:15 +0000 (00:06 +0100)
platform/libretro/libretro.c

index 82e7245..afec106 100644 (file)
@@ -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);