From e6ea96771bf0756826cc8e7a840a55f5fe727913 Mon Sep 17 00:00:00 2001 From: zeromus Date: Thu, 1 Oct 2015 01:16:24 -0500 Subject: [PATCH] fix crashes removing lua callbacks on some cores --- BizHawk.Client.Common/lua/LuaFunctionList.cs | 10 +++++++++- BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs | 5 +---- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/BizHawk.Client.Common/lua/LuaFunctionList.cs b/BizHawk.Client.Common/lua/LuaFunctionList.cs index f49d425145..fe9946fff9 100644 --- a/BizHawk.Client.Common/lua/LuaFunctionList.cs +++ b/BizHawk.Client.Common/lua/LuaFunctionList.cs @@ -40,7 +40,15 @@ namespace BizHawk.Client.Common if (Global.Emulator.CanDebug()) { - Global.Emulator.AsDebuggable().MemoryCallbacks.RemoveAll(this.Select(x => x.Callback)); + try + { + var cbSys = Global.Emulator.AsDebuggable().MemoryCallbacks; + cbSys.RemoveAll(this.Select(x => x.Callback)); + } + catch + { + //swallow exceptions here. many cores havent implemented memorycallbacks, we ought to have more granular feature querying + } } Clear(); diff --git a/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs b/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs index c8c738ac72..2552eac888 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs @@ -32,7 +32,7 @@ namespace BizHawk.Emulation.Cores.Sony.PSX isPorted: true, isReleased: true )] - public unsafe class Octoshock : IEmulator, IVideoProvider, ISyncSoundProvider, ISaveRam, IStatable, IDriveLight, IInputPollable, ISettable, IDebuggable, IRegionable + public unsafe class Octoshock : IEmulator, IVideoProvider, ISyncSoundProvider, ISaveRam, IStatable, IDriveLight, ISettable, IDebuggable, IRegionable { public string SystemId { get { return "PSX"; } } @@ -396,8 +396,6 @@ namespace BizHawk.Emulation.Cores.Sony.PSX public IEmulatorServiceProvider ServiceProvider { get; private set; } - public IInputCallbackSystem InputCallbacks { get { throw new NotImplementedException(); } } - public bool DriveLightEnabled { get; private set; } public bool DriveLightOn { get; private set; } @@ -1295,7 +1293,6 @@ namespace BizHawk.Emulation.Cores.Sony.PSX return OctoshockDll.SHOCK_OK; } - [FeatureNotImplemented] public IMemoryCallbackSystem MemoryCallbacks { get { throw new NotImplementedException(); } } public bool CanStep(StepType type) { return false; }