From 6b462630e05954a0e8d6aad857773eae9a4259ee Mon Sep 17 00:00:00 2001 From: zeromus Date: Fri, 3 Apr 2020 18:42:22 -0400 Subject: [PATCH] fix crash in MGBA memory callbacks due to GC of temporarily marshaled delegate (by keeping an instance referenced in a member, as usual) --- .../Consoles/Nintendo/GBA/MGBAMemoryCallbackSystem.cs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/MGBAMemoryCallbackSystem.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/MGBAMemoryCallbackSystem.cs index 21b07ac5d8..99ca418e09 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/MGBAMemoryCallbackSystem.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/MGBAMemoryCallbackSystem.cs @@ -56,7 +56,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBA } else { - LibmGBA.BizSetMemCallback(container.Call); + LibmGBA.BizSetMemCallback(container.CallDelegate); container.ID = LibmGBA.BizSetWatchpoint(_mgba.Core, callback.Address.Value, container.WatchPointType); } @@ -106,6 +106,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBA public CallbackContainer(IMemoryCallback callBack) { Callback = callBack; + CallDelegate = Call; } public IMemoryCallback Callback { get; } @@ -130,7 +131,9 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBA } } - public void Call(uint addr, LibmGBA.mWatchpointType type, uint oldValue, uint newValue) + public LibmGBA.MemCallback CallDelegate; + + void Call(uint addr, LibmGBA.mWatchpointType type, uint oldValue, uint newValue) { Callback.Callback?.Invoke(addr, newValue, 0); }