From db42bbfe6bc845301584c5597803d83045032b09 Mon Sep 17 00:00:00 2001 From: "andres.delikat" Date: Sun, 17 Apr 2011 20:56:35 +0000 Subject: [PATCH] Sunsoft1 - savestate support --- BizHawk.Emulation/Consoles/Nintendo/NES/Boards/Sunsoft1.cs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/BizHawk.Emulation/Consoles/Nintendo/NES/Boards/Sunsoft1.cs b/BizHawk.Emulation/Consoles/Nintendo/NES/Boards/Sunsoft1.cs index d239f930eb..9bbd015085 100644 --- a/BizHawk.Emulation/Consoles/Nintendo/NES/Boards/Sunsoft1.cs +++ b/BizHawk.Emulation/Consoles/Nintendo/NES/Boards/Sunsoft1.cs @@ -63,5 +63,12 @@ Other chips used: Sunsoft-1 left_piece = value & 7 & chr_mask; right_piece = (value >> 4) & 7 & chr_mask; } + + public override void SyncStateBinary(BinarySerializer ser) + { + base.SyncStateBinary(ser); + ser.Sync(ref left_piece); + ser.Sync(ref right_piece); + } } }