teeny fix for non-windows builds

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@136 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Shawn Hoffman 2008-08-05 09:53:42 +00:00
parent 8ff50f3155
commit 9a377ac874
1 changed files with 1 additions and 1 deletions

View File

@ -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());
}