cleanup some debugger calls

this also fixes double-load on start, which is especially noticeable in debug with waterbox cores
This commit is contained in:
Morilli 2025-01-02 15:18:31 +01:00
parent 238e7bca1e
commit 5f36cacfd2
2 changed files with 1 additions and 6 deletions

View File

@ -48,7 +48,6 @@ namespace BizHawk.Client.EmuHawk
if (CanDisassemble)
{
Disassemble();
SetDisassemblerItemCount();
}
}
@ -143,10 +142,7 @@ namespace BizHawk.Client.EmuHawk
private void DisassemblerView_SizeChanged(object sender, EventArgs e)
{
SetDisassemblerItemCount();
if (CanDisassemble)
{
Disassemble();
}
UpdateDisassembler();
}
private void SmallIncrement()

View File

@ -109,7 +109,6 @@ namespace BizHawk.Client.EmuHawk
UpdateCapabilitiesProps();
DisengageDebugger();
EngageDebugger();
FullUpdate();
}
protected override void GeneralUpdate() => FullUpdate();