From bf9c6d784d5bcae718d6461e2d59ff04a73d843b Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Mon, 17 May 2021 20:45:36 -0400 Subject: [PATCH] NESHawk: add missing mapper variable to state. Only for some pirate games so won't fix any reported issues, just something I noticed. --- .../Consoles/Nintendo/NES/Boards/MMC3_family/MMC3.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/MMC3_family/MMC3.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/MMC3_family/MMC3.cs index 4254c7d055..ec11545c8d 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/MMC3_family/MMC3.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/MMC3_family/MMC3.cs @@ -149,6 +149,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES ser.Sync(nameof(irq_reload_flag), ref irq_reload_flag); ser.Sync(nameof(wram_enable), ref wram_enable); ser.Sync(nameof(wram_write_protect), ref wram_write_protect); + ser.Sync(nameof(cmd), ref cmd); Sync(); }