Remove debug menu item for reproducing #2805
This commit is contained in:
parent
8869570bcf
commit
7999407089
|
@ -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 =
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue