Fix Taikyoku Igo - Goliath

(clear $4218-421f to 1s instead of 0s at start of auto-joypad polling)
This commit is contained in:
byuu 2019-12-27 08:32:18 +09:00
parent 169c0871c7
commit 01c16dcf4d
1 changed files with 4 additions and 4 deletions

View File

@ -215,10 +215,10 @@ auto CPU::joypadEdge() -> void {
controllerPort2.device->latch(0);
//shift registers are cleared at start of auto joypad polling
io.joy1 = 0;
io.joy2 = 0;
io.joy3 = 0;
io.joy4 = 0;
io.joy1 = ~0;
io.joy2 = ~0;
io.joy3 = ~0;
io.joy4 = ~0;
}
uint2 port0 = controllerPort1.device->data();