mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Debugger: Update VFPU dialog more evenly.
Was previously not updating when you hit a breakpoint, stepped out, etc.
This commit is contained in:
parent
be8a173026
commit
f31a7a0582
1 changed files with 2 additions and 4 deletions
|
@ -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() {
|
||||
|
|
Loading…
Add table
Reference in a new issue