mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-11 07:18:13 -05:00
Fix crash when the disassembler pause button is pressed while no game is running.
This commit is contained in:
@ -220,7 +220,9 @@ void DisassemblerWidget::OnPause()
|
|||||||
emu_thread.SetCpuRunning(false);
|
emu_thread.SetCpuRunning(false);
|
||||||
|
|
||||||
// TODO: By now, the CPU might not have actually stopped...
|
// TODO: By now, the CPU might not have actually stopped...
|
||||||
model->SetNextInstruction(Core::g_app_core->GetPC());
|
if (model && Core::g_app_core) {
|
||||||
|
model->SetNextInstruction(Core::g_app_core->GetPC());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void DisassemblerWidget::OnToggleStartStop()
|
void DisassemblerWidget::OnToggleStartStop()
|
||||||
|
Reference in New Issue
Block a user