mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-08-24 12:32:51 +02:00
Fix Taikyoku Igo - Goliath
(clear $4218-421f to 1s instead of 0s at start of auto-joypad polling)
This commit is contained in:
@@ -215,10 +215,10 @@ auto CPU::joypadEdge() -> void {
|
|||||||
controllerPort2.device->latch(0);
|
controllerPort2.device->latch(0);
|
||||||
|
|
||||||
//shift registers are cleared at start of auto joypad polling
|
//shift registers are cleared at start of auto joypad polling
|
||||||
io.joy1 = 0;
|
io.joy1 = ~0;
|
||||||
io.joy2 = 0;
|
io.joy2 = ~0;
|
||||||
io.joy3 = 0;
|
io.joy3 = ~0;
|
||||||
io.joy4 = 0;
|
io.joy4 = ~0;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint2 port0 = controllerPort1.device->data();
|
uint2 port0 = controllerPort1.device->data();
|
||||||
|
Reference in New Issue
Block a user