From 5f1263aef31d9dc1ce1f55e6bfd275b908e41944 Mon Sep 17 00:00:00 2001 From: Dan Weiss Date: Thu, 31 Dec 2020 08:49:09 -0500 Subject: [PATCH] Fix Load State for Mapper 19, should not call `SyncMirror` after calling `FixNTAR` (#293) --- src/boards/n106.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/boards/n106.cpp b/src/boards/n106.cpp index 1d126721..cbbbc790 100644 --- a/src/boards/n106.cpp +++ b/src/boards/n106.cpp @@ -351,9 +351,9 @@ static void DoNamcoSound(int32 *Wave, int Count) { static void Mapper19_StateRestore(int version) { SyncPRG(); + SyncMirror(); FixNTAR(); FixCRR(); - SyncMirror(); int x; for (x = 0x40; x < 0x80; x++) FixCache(x, IRAM[x]);