From cea0762c07b785671cf0f88803cee3080da896ab Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 1 Mar 2020 09:47:26 -0600 Subject: [PATCH] cleanup a few things in MGBAMemoryCallbackSystem --- .../Consoles/Nintendo/GBA/MGBAMemoryCallbackSystem.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/MGBAMemoryCallbackSystem.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/MGBAMemoryCallbackSystem.cs index a7980e37ce..c2155e3204 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/MGBAMemoryCallbackSystem.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/MGBAMemoryCallbackSystem.cs @@ -60,9 +60,9 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBA public void Remove(MemoryCallbackDelegate action) { - var cbToRemove = _callbacks.Where(container => container.Callback.Callback == action).FirstOrDefault(); + var cbToRemove = _callbacks.Single(container => container.Callback.Callback == action); - if (LibmGBA.BizClearWatchpoint(_mgba.Core, cbToRemove.ID) == true) + if (LibmGBA.BizClearWatchpoint(_mgba.Core, cbToRemove.ID)) { _callbacks.Remove(cbToRemove); } @@ -80,7 +80,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBA { foreach (var cb in _callbacks) { - if (LibmGBA.BizClearWatchpoint(_mgba.Core, cb.ID) == true) + if (LibmGBA.BizClearWatchpoint(_mgba.Core, cb.ID)) { _callbacks.Remove(cb); }