mirror of
https://github.com/libretro/ppsspp.git
synced 2024-11-27 18:30:56 +00:00
Avoid exit crash
This commit is contained in:
parent
d90a024fc6
commit
0c3d310a31
@ -132,6 +132,8 @@ void Debugger_Disasm::StepHLE()
|
||||
|
||||
void Debugger_Disasm::UpdateDialog()
|
||||
{
|
||||
if(!isVisible())
|
||||
return;
|
||||
ui->DisasmView->setAlign(cpu->getInstructionSize(0));
|
||||
ui->DisasmView->redraw();
|
||||
ui->RegList->redraw();
|
||||
|
@ -1467,6 +1467,8 @@ void Debugger_DisplayList::FillDisplayListCmd(std::map<int,DListLine>& data, u32
|
||||
|
||||
void Debugger_DisplayList::Update()
|
||||
{
|
||||
if(!isVisible())
|
||||
return;
|
||||
UpdateRenderBuffer();
|
||||
UpdateRenderBufferList();
|
||||
UpdateDisplayList();
|
||||
|
Loading…
Reference in New Issue
Block a user