diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs index 030a39d95c..2b3a19c482 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs @@ -484,6 +484,8 @@ namespace BizHawk.Emulation.Cores.Nintendo.Gameboy writer.Write(IsLagFrame); writer.Write(LagCount); writer.Write(Frame); + writer.Write(frameOverflow); + writer.Write(_cycleCount); } public void LoadStateBinary(System.IO.BinaryReader reader) @@ -497,6 +499,8 @@ namespace BizHawk.Emulation.Cores.Nintendo.Gameboy IsLagFrame = reader.ReadBoolean(); LagCount = reader.ReadInt32(); Frame = reader.ReadInt32(); + frameOverflow = reader.ReadUInt32(); + _cycleCount = reader.ReadUInt64(); } public byte[] SaveStateBinary()