summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
Diffstat (limited to 'Source')
-rw-r--r--Source/Plugins/Plugin_DSP_LLE/Src/DSPHost.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/Plugins/Plugin_DSP_LLE/Src/DSPHost.cpp b/Source/Plugins/Plugin_DSP_LLE/Src/DSPHost.cpp
index 96c3c36943..4eaa99882e 100644
--- a/Source/Plugins/Plugin_DSP_LLE/Src/DSPHost.cpp
+++ b/Source/Plugins/Plugin_DSP_LLE/Src/DSPHost.cpp
@@ -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();
}