From a5dc4c4a87c74a8d0be1d1ded2c56401b12753f2 Mon Sep 17 00:00:00 2001 From: nakeee Date: Mon, 2 Mar 2009 21:39:06 +0000 Subject: [PATCH] Compile fix git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2530 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/DebuggerWX/Src/CodeWindowSJP.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DebuggerWX/Src/CodeWindowSJP.cpp b/Source/Core/DebuggerWX/Src/CodeWindowSJP.cpp index ec34fce38f..75f10818ae 100644 --- a/Source/Core/DebuggerWX/Src/CodeWindowSJP.cpp +++ b/Source/Core/DebuggerWX/Src/CodeWindowSJP.cpp @@ -199,7 +199,7 @@ void CCodeWindow::OnSymbolsMenu(wxCommandEvent& event) this); if (path) { - FILE *f = fopen(path, "r"); + FILE *f = fopen(path.mb_str(), "r"); if (!f) return;