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:
hrydgard 2009-06-28 17:38:18 +00:00
parent cc38e72dc3
commit 17f697d856
1 changed files with 4 additions and 2 deletions

View File

@ -100,11 +100,13 @@ u32 DSPHost_CodeLoaded(const u8 *ptr, int size)
// Always add the ROM. // Always add the ROM.
DSPSymbols::AutoDisassembly(0x8000, 0x9000); DSPSymbols::AutoDisassembly(0x8000, 0x9000);
m_DebuggerFrame->Refresh(); if (m_DebuggerFrame)
m_DebuggerFrame->Refresh();
return crc; return crc;
} }
void DSPHost_UpdateDebugger() void DSPHost_UpdateDebugger()
{ {
m_DebuggerFrame->Refresh(); if (m_DebuggerFrame)
m_DebuggerFrame->Refresh();
} }