summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinWX/Src/Debugger/CodeWindowFunctions.cpp
diff options
context:
space:
mode:
authorJordan Woyak <jordan.woyak@gmail.com>2013-02-28 03:11:10 -0600
committerJordan Woyak <jordan.woyak@gmail.com>2013-02-28 03:11:10 -0600
commit95558cdc6911e6122fec94616e4d6975d2c355fb (patch)
tree4cd10de11d30aedf570dce34ad96ea59520b13dc /Source/Core/DolphinWX/Src/Debugger/CodeWindowFunctions.cpp
parent03ec9a2e088b0818bf02a5bc2ffda4a512cba2b7 (diff)
Buildfix.
Diffstat (limited to 'Source/Core/DolphinWX/Src/Debugger/CodeWindowFunctions.cpp')
-rw-r--r--Source/Core/DolphinWX/Src/Debugger/CodeWindowFunctions.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DolphinWX/Src/Debugger/CodeWindowFunctions.cpp b/Source/Core/DolphinWX/Src/Debugger/CodeWindowFunctions.cpp
index 7ec36131ff..362e617696 100644
--- a/Source/Core/DolphinWX/Src/Debugger/CodeWindowFunctions.cpp
+++ b/Source/Core/DolphinWX/Src/Debugger/CodeWindowFunctions.cpp
@@ -285,7 +285,7 @@ void CCodeWindow::OnSymbolsMenu(wxCommandEvent& event)
if (!path.IsEmpty())
{
- std::ifstream f(WxStrToStr(path));
+ std::ifstream f(WxStrToStr(path).c_str());
std::string line;
while (std::getline(f, line))