We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dccf9f7 commit cd3055eCopy full SHA for cd3055e
mos-platform/pce-common/libpce/src/joypad.c
@@ -17,8 +17,8 @@ uint8_t pce_joypad_wr(uint8_t value) {
17
}
18
19
__attribute__((noinline)) uint8_t pce_joypad_next(void) {
20
- uint8_t low = pce_joypad_wr(0);
21
uint8_t high = pce_joypad_wr(JOYPAD_SEL);
+ uint8_t low = pce_joypad_wr(0);
22
return (low & 0xF) | (high << 4);
23
24
0 commit comments