notaz.gp2x.de
/
picodrive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2409e64
)
- quick adjustment (replacing Select with Y, instead of just adding Y)
author
LilaQ
<teh.lilaq@gmail.com>
Sun, 2 Feb 2025 22:03:22 +0000
(23:03 +0100)
committer
irixxxx
<31696370+irixxxx@users.noreply.github.com>
Sun, 2 Feb 2025 23:06:15 +0000
(
00:06
+0100)
platform/libretro/libretro.c
patch
|
blob
|
blame
|
history
diff --git
a/platform/libretro/libretro.c
b/platform/libretro/libretro.c
index
afec106
..
1fafa0b
100644
(file)
--- a/
platform/libretro/libretro.c
+++ b/
platform/libretro/libretro.c
@@
-2365,8
+2365,8
@@
void retro_run(void)
if (PicoIn.AHW == PAHW_PICO) {
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_Y)
);
+ (1 << RETRO_DEVICE_ID_JOYPAD_X) | (1 << RETRO_DEVICE_ID_JOYPAD_
Y
) |
+ (1 << RETRO_DEVICE_ID_JOYPAD_START));
uint16_t new_ev = ev & ~pico_events;
pico_events = ev;
run_events_pico(new_ev);