fix LLE plugin crashing when not starting dolphin with -d
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3576 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
cc38e72dc3
commit
17f697d856
|
@ -100,11 +100,13 @@ u32 DSPHost_CodeLoaded(const u8 *ptr, int size)
|
|||
// Always add the ROM.
|
||||
DSPSymbols::AutoDisassembly(0x8000, 0x9000);
|
||||
|
||||
m_DebuggerFrame->Refresh();
|
||||
if (m_DebuggerFrame)
|
||||
m_DebuggerFrame->Refresh();
|
||||
return crc;
|
||||
}
|
||||
|
||||
void DSPHost_UpdateDebugger()
|
||||
{
|
||||
m_DebuggerFrame->Refresh();
|
||||
if (m_DebuggerFrame)
|
||||
m_DebuggerFrame->Refresh();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue