From b214b7eb55a5d3e49a8ed302dd5b26a3c7a084bc Mon Sep 17 00:00:00 2001 From: nattthebear Date: Wed, 21 Jun 2017 19:11:50 -0400 Subject: [PATCH] we learned nothing from this --- BizHawk.Emulation.Cores/Waterbox/WaterboxCore.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/BizHawk.Emulation.Cores/Waterbox/WaterboxCore.cs b/BizHawk.Emulation.Cores/Waterbox/WaterboxCore.cs index 892708d6d0..aced1aff19 100644 --- a/BizHawk.Emulation.Cores/Waterbox/WaterboxCore.cs +++ b/BizHawk.Emulation.Cores/Waterbox/WaterboxCore.cs @@ -243,6 +243,8 @@ namespace BizHawk.Emulation.Cores.Waterbox BufferHeight = reader.ReadInt32(); // reset pointers here! _core.SetInputCallback(null); + //_exe.PrintDebuggingInfo(); + LoadStateBinaryInternal(reader); } public void SaveStateBinary(BinaryWriter writer) @@ -254,6 +256,7 @@ namespace BizHawk.Emulation.Cores.Waterbox writer.Write(IsLagFrame); writer.Write(BufferWidth); writer.Write(BufferHeight); + SaveStateBinaryInternal(writer); } public byte[] SaveStateBinary()