1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-06-25 19:29:49 +00:00

NES: fix swapped joypad definitions

This commit is contained in:
Karol Stasiak 2019-01-13 19:43:37 +01:00
parent 6979cbfe39
commit 3a5cf16bba

View File

@ -10,12 +10,12 @@ byte input_start
macro void read_joy1() {
nes_reset_joy()
read_also_joy2()
read_also_joy1()
}
macro void read_joy2() {
nes_reset_joy()
read_also_joy1()
read_also_joy2()
}
void nes_reset_joy() {