mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Debugger: Fix crash on stepping/break.
This commit is contained in:
parent
87d2e16b11
commit
96c1ae0f12
1 changed files with 4 additions and 2 deletions
|
@ -236,7 +236,8 @@ void CDisasm::stepInto()
|
|||
|
||||
ptr->gotoPC();
|
||||
UpdateDialog();
|
||||
vfpudlg->Update();
|
||||
if (vfpudlg)
|
||||
vfpudlg->Update();
|
||||
|
||||
CtrlMemView::getFrom(GetDlgItem(m_hDlg,IDC_DEBUGMEMVIEW))->redraw();
|
||||
threadList->reloadThreads();
|
||||
|
@ -528,7 +529,8 @@ BOOL CDisasm::DlgProc(UINT message, WPARAM wParam, LPARAM lParam)
|
|||
Sleep(1); //let cpu catch up
|
||||
ptr->gotoPC();
|
||||
UpdateDialog();
|
||||
vfpudlg->Update();
|
||||
if (vfpudlg)
|
||||
vfpudlg->Update();
|
||||
} else { // go
|
||||
lastTicks = CoreTiming::GetTicks();
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue