summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp
diff options
context:
space:
mode:
authorCarlKenner <carl.kenner@gmail.com>2014-12-15 18:42:07 +1030
committerCarlKenner <carl.kenner@gmail.com>2014-12-17 01:11:58 +1030
commitdfd915eb535276088f9d9f8681b196b37bd11229 (patch)
treed2edb1f28bf9fae56550980a36dd967a55b726f4 /Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp
parentf95f43fdde1a0c8f5181c1359314253e973b43ea (diff)
Merge bad map file loading into the original function.
Diffstat (limited to 'Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp')
-rw-r--r--Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp b/Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp
index 2adbb32b66..e5f91692ee 100644
--- a/Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp
+++ b/Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp
@@ -314,7 +314,7 @@ void CCodeWindow::OnSymbolsMenu(wxCommandEvent& event)
if (!path.IsEmpty())
{
- g_symbolDB.LoadBadMap(WxStrToStr(path));
+ g_symbolDB.LoadMap(WxStrToStr(path), true);
Parent->StatusBarMessage("Loaded symbols from '%s'", WxStrToStr(path).c_str());
}
HLE::PatchFunctions();