diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/Mapper186.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/Mapper186.cs index 7bc16513cc..77ae9596bc 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/Mapper186.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/Mapper186.cs @@ -20,6 +20,13 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES return true; } + public override void SyncState(Serializer ser) + { + ser.Sync("SRAM", ref _SRAM); + ser.Sync("regs", ref regs); + base.SyncState(ser); + } + public override byte ReadPRG(int addr) { if (addr < 0x4000)