From 9a377ac87466b57f8de9bf0dfbed97d20fb1ae69 Mon Sep 17 00:00:00 2001 From: Shawn Hoffman Date: Tue, 5 Aug 2008 09:53:42 +0000 Subject: [PATCH] teeny fix for non-windows builds git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@136 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Plugins/Plugin_VideoOGL/Src/GUI/ConfigDlg.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Plugins/Plugin_VideoOGL/Src/GUI/ConfigDlg.cpp b/Source/Plugins/Plugin_VideoOGL/Src/GUI/ConfigDlg.cpp index 496c726649..3682f04d6c 100644 --- a/Source/Plugins/Plugin_VideoOGL/Src/GUI/ConfigDlg.cpp +++ b/Source/Plugins/Plugin_VideoOGL/Src/GUI/ConfigDlg.cpp @@ -203,5 +203,5 @@ void ConfigDialog::DumpTexturesChange(wxCommandEvent& event) void ConfigDialog::TexturePathChange(wxFileDirPickerEvent& event) { //note: if a user inputs an incorrect path, this event wil not be fired. - strcpy(g_Config.texDumpPath,event.GetPath().c_str()); + strcpy(g_Config.texDumpPath,event.GetPath().mb_str()); }