Remove debug menu item for reproducing #2805

This commit is contained in:
YoshiRulz 2022-06-04 21:40:56 +10:00
parent 8869570bcf
commit 7999407089
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
2 changed files with 0 additions and 28 deletions

View File

@ -12,7 +12,6 @@ using BizHawk.Client.EmuHawk.Properties;
using BizHawk.Common;
using BizHawk.Emulation.Common;
using BizHawk.Emulation.Cores;
using BizHawk.Emulation.Cores.Nintendo.GBA;
using BizHawk.Emulation.Cores.Nintendo.N64;
using BizHawk.Emulation.Cores.Nintendo.Sameboy;
using BizHawk.WinForms.Controls;
@ -199,18 +198,6 @@ namespace BizHawk.Client.EmuHawk
},
},
},
new DebugVSystemMenuItem(VSystemID.Raw.GBA)
{
DropDownItems =
{
new DebugVSystemChildItem(
"Reproduce #2805",
() => ((MGBAMemoryCallbackSystem) Emulator.AsDebuggable().MemoryCallbacks).Debug2805())
{
RequiresCore = CoreNames.Mgba,
},
},
},
new DebugVSystemMenuItem(VSystemID.Raw.N64)
{
DropDownItems =

View File

@ -196,21 +196,6 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBA
cb?.Invoke(pc, 0, (uint)MemoryCallbackFlags.AccessExecute);
}
}
private MemoryCallbackDelegate DebugCallback = null;
private bool DebugCallbackExecuted = false;
public void Debug2805()
{
DebugCallback = (_, _, _) =>
{
Console.WriteLine(DebugCallbackExecuted ? "subsequent call" : "first call");
Remove(DebugCallback);
DebugCallbackExecuted = true;
};
Add(new MemoryCallback("System Bus", MemoryCallbackType.Write, "Plugin Hook", DebugCallback, 0x020096E0, null));
}
}
internal class CallbackContainer