Mapper 396: Take mirroring selection from the correct register

This commit is contained in:
NewRisingSun
2022-02-15 20:51:43 +01:00
parent c3accb2e94
commit 8f194ab38c

View File

@@ -32,7 +32,7 @@ static void Sync (void) {
setprg16(0x8000, reg[1] << 3 | reg[0] & 7);
setprg16(0xC000, reg[1] << 3 | 7);
setchr8(0);
setmirror(((reg[0] >> 6) & 1) ^ 1);
setmirror(((reg[1] >> 6) & 1) ^ 1);
}
static DECLFW(M396WriteInnerBank) {