From b8b9201604333b8e9799e5291d8bfb4bdbf2a5bb Mon Sep 17 00:00:00 2001 From: nattthebear Date: Sat, 22 Oct 2016 18:09:28 -0400 Subject: [PATCH] mgbahawk: savestates --- .../Consoles/Nintendo/GBA/LibmGBA.cs | 2 +- .../Consoles/Nintendo/GBA/MGBAHawk.cs | 12 +++++------- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/LibmGBA.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/LibmGBA.cs index 31613a6b6f..316b395e91 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/LibmGBA.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/LibmGBA.cs @@ -84,7 +84,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBA [DllImport(dll, CallingConvention = cc)] public static extern int BizGetStateMaxSize(IntPtr ctx); [DllImport(dll, CallingConvention = cc)] - public static extern int BizGetState(IntPtr ctx, byte[] dest, int maxsize); + public static extern bool BizGetState(IntPtr ctx, byte[] dest, int size); [DllImport(dll, CallingConvention = cc)] public static extern bool BizPutState(IntPtr ctx, byte[] src, int size); diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/MGBAHawk.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/MGBAHawk.cs index 00a3a7e708..ed48c6fe62 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/MGBAHawk.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/MGBAHawk.cs @@ -396,11 +396,10 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBA public void SaveStateBinary(BinaryWriter writer) { - int size = LibmGBA.BizGetState(_core, _savebuff, _savebuff.Length); - if (size < 0) + if (!LibmGBA.BizGetState(_core, _savebuff, _savebuff.Length)) throw new InvalidOperationException("Core failed to save!"); - writer.Write(size); - writer.Write(_savebuff, 0, size); + writer.Write(_savebuff.Length); + writer.Write(_savebuff, 0, _savebuff.Length); // other variables writer.Write(IsLagFrame); @@ -411,10 +410,9 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBA public void LoadStateBinary(BinaryReader reader) { int length = reader.ReadInt32(); - if (length > _savebuff.Length) + if (length != _savebuff.Length) { - _savebuff = new byte[length]; - _savebuff2 = new byte[length + 13]; + throw new InvalidOperationException("Unexpected state size!"); } reader.Read(_savebuff, 0, length); if (!LibmGBA.BizPutState(_core, _savebuff, length))