mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Attempt to prevent shutdown crash in debugger.
This commit is contained in:
parent
b74c62b6a6
commit
12713a44a1
1 changed files with 3 additions and 0 deletions
|
@ -137,6 +137,9 @@ void DisassemblyManager::analyze(u32 address, u32 size = 1024)
|
|||
|
||||
while (address < end && start <= address)
|
||||
{
|
||||
if (!PSP_IsInited())
|
||||
return;
|
||||
|
||||
auto it = findDisassemblyEntry(entries,address,false);
|
||||
if (it != entries.end())
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue