This commit is contained in:
libretroadmin
2024-07-20 19:55:33 +02:00
parent 21651b9947
commit 744f5d9c8b

View File

@@ -44,7 +44,7 @@
static uint8 latch_out, latch_in;
static void INX_007T_Sync() {
setprg32(0x8000, (latch_in & 0b111) | (latch_out << 3));
setprg32(0x8000, (latch_in & 7) | (latch_out << 3));
setmirror(MI_0 + ((latch_in >> 4) & 1));
setchr8(0);
}