Debugger: Update VFPU dialog more evenly.

Was previously not updating when you hit a breakpoint, stepped out, etc.
This commit is contained in:
Unknown W. Brackets 2023-04-09 10:12:54 -07:00
parent be8a173026
commit f31a7a0582

View file

@ -239,8 +239,6 @@ void CDisasm::stepInto()
ptr->gotoPC();
UpdateDialog();
if (vfpudlg)
vfpudlg->Update();
threadList->reloadThreads();
stackTraceView->loadStackTrace();
@ -525,8 +523,6 @@ BOOL CDisasm::DlgProc(UINT message, WPARAM wParam, LPARAM lParam)
Sleep(1); //let cpu catch up
ptr->gotoPC();
UpdateDialog();
if (vfpudlg)
vfpudlg->Update();
} else { // go
lastTicks = CoreTiming::GetTicks();
@ -885,6 +881,8 @@ void CDisasm::UpdateDialog() {
// Update memory window too.
if (memoryWindow)
memoryWindow->Update();
if (vfpudlg)
vfpudlg->Update();
}
void CDisasm::ProcessUpdateDialog() {