From c3accb2e947dd3bc415083bc0d75677bc10389df Mon Sep 17 00:00:00 2001 From: NewRisingSun <8vytz1+dhp372pv94ebg@sharklasers.com> Date: Tue, 15 Feb 2022 20:44:25 +0100 Subject: [PATCH] Mapper 414: Correct mirroring selection --- src/boards/414.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/boards/414.c b/src/boards/414.c index 79ff817..546e94a 100644 --- a/src/boards/414.c +++ b/src/boards/414.c @@ -38,7 +38,7 @@ static void Sync(void) { setprg16(0xC000, latch_addr >> 1); } setchr8(latch_data); - setmirror((latch_data & 1) ^ 1); + setmirror((latch_addr & 1) ^ 1); } static DECLFW(M414Write) {