diff options
| author | skidau <skidau@gmail.com> | 2014-10-26 21:19:22 +1100 |
|---|---|---|
| committer | skidau <skidau@gmail.com> | 2014-10-26 21:19:22 +1100 |
| commit | 7eebbcdca7f5dff60aff387f789bc1292905c68a (patch) | |
| tree | 6682342dc0040c0c5a5975adf6202f7ffd1b6e42 /Source/Core | |
| parent | 73dca1ca33c4699ac6a3f38e9bfb824983af56cb (diff) | |
Fixed a crash that would occur when old symbol information was reused
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/DolphinWX/FrameTools.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/Core/DolphinWX/FrameTools.cpp b/Source/Core/DolphinWX/FrameTools.cpp index 2ef29ccecc..c4a8009017 100644 --- a/Source/Core/DolphinWX/FrameTools.cpp +++ b/Source/Core/DolphinWX/FrameTools.cpp @@ -58,6 +58,7 @@ #include "Core/IPC_HLE/WII_IPC_HLE_Device_usb.h" #include "Core/IPC_HLE/WII_IPC_HLE_WiiMote.h" #include "Core/PowerPC/PowerPC.h" +#include "Core/PowerPC/PPCSymbolDB.h" #include "DiscIO/NANDContentLoader.h" @@ -1193,6 +1194,8 @@ void CFrame::DoStop() PowerPC::memchecks.Clear(); g_pCodeWindow->m_BreakpointWindow->NotifyUpdate(); } + g_symbolDB.Clear(); + Host_NotifyMapLoaded(); } } |
