diff options
| author | CarlKenner <carl.kenner@gmail.com> | 2014-12-15 11:34:18 +1030 |
|---|---|---|
| committer | CarlKenner <carl.kenner@gmail.com> | 2014-12-17 01:11:52 +1030 |
| commit | f95f43fdde1a0c8f5181c1359314253e973b43ea (patch) | |
| tree | 845f343f37d88fd1946221577a34dc77c8a78d6b /Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp | |
| parent | aa850c8eee0cda51cd86350ac147d1ae1e93d7c6 (diff) | |
Apparently c_str doesn't return a C str.
Diffstat (limited to 'Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp')
| -rw-r--r-- | Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp b/Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp index b19d26fb74..2adbb32b66 100644 --- a/Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp +++ b/Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp @@ -298,7 +298,7 @@ void CCodeWindow::OnSymbolsMenu(wxCommandEvent& event) if (!path.IsEmpty()) { g_symbolDB.LoadMap(WxStrToStr(path)); - Parent->StatusBarMessage("Loaded symbols from '%s'", path.c_str()); + Parent->StatusBarMessage("Loaded symbols from '%s'", WxStrToStr(path).c_str()); } HLE::PatchFunctions(); NotifyMapLoaded(); @@ -315,7 +315,7 @@ void CCodeWindow::OnSymbolsMenu(wxCommandEvent& event) if (!path.IsEmpty()) { g_symbolDB.LoadBadMap(WxStrToStr(path)); - Parent->StatusBarMessage("Loaded symbols from '%s'", path.c_str()); + Parent->StatusBarMessage("Loaded symbols from '%s'", WxStrToStr(path).c_str()); } HLE::PatchFunctions(); NotifyMapLoaded(); |
