Debugger: Keep instruction's panel up-to-date with memory changes

This commit is contained in:
Eladash 2022-04-28 18:11:12 +03:00 committed by Ivan
parent 8316469cfc
commit 159f9494a9
1 changed files with 1 additions and 1 deletions

View File

@ -743,6 +743,7 @@ std::function<cpu_thread*()> debugger_frame::make_check_cpu(cpu_thread* cpu)
void debugger_frame::UpdateUI()
{
UpdateUnitList();
ShowPC();
const auto cpu = get_cpu();
@ -964,7 +965,6 @@ void debugger_frame::DoUpdate()
m_last_step_over_breakpoint = -1;
}
ShowPC();
WritePanels();
}