Fixed the "To PC" button not updating the disassembler view (squashed PR #3299)

* Fixed the "To PC" button from not updating the disassembler view in the Debugger window.
* Fixed the calls being reversed, per feedback.
This commit is contained in:
Thompson Lee 2022-07-02 00:39:03 -04:00 committed by GitHub
parent b8f8b41f2c
commit 369bdbe9a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -293,7 +293,9 @@ namespace BizHawk.Client.EmuHawk
private void ToPCBtn_Click(object sender, EventArgs e)
{
UpdatePC();
UpdateDisassembler();
DisassemblerView.Refresh();
}
private void RefreshMenuItem_Click(object sender, EventArgs e)