we learned nothing from this

This commit is contained in:
nattthebear 2017-06-21 19:11:50 -04:00
parent 390e5b1a26
commit b214b7eb55
1 changed files with 3 additions and 0 deletions

View File

@ -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()