diff options
| author | Lioncash <mathew1800@gmail.com> | 2014-07-13 23:43:41 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2014-07-13 23:43:41 -0400 |
| commit | d931637d63f361b0523f415ea90c6bdde1b708bb (patch) | |
| tree | fbb61eb0a2665478d77ced06d63ae8f33698a08a /Source/Core | |
| parent | 5c57a1ef4b06f082207d6a578c224c4f0db473d0 (diff) | |
DolphinWX: Remove two c_str calls in ISOProperties.cpp.
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/DolphinWX/ISOProperties.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/DolphinWX/ISOProperties.cpp b/Source/Core/DolphinWX/ISOProperties.cpp index 8fd33532b8..5f8097dbe6 100644 --- a/Source/Core/DolphinWX/ISOProperties.cpp +++ b/Source/Core/DolphinWX/ISOProperties.cpp @@ -866,9 +866,9 @@ void CISOProperties::OnExtractDir(wxCommandEvent& event) { if (DiscIO::IsVolumeWiiDisc(OpenISO)) for (u32 i = 0; i < WiiDisc.size(); i++) - ExportDir("", WxStrToStr(Path).c_str(), i); + ExportDir("", WxStrToStr(Path), i); else - ExportDir("", WxStrToStr(Path).c_str()); + ExportDir("", WxStrToStr(Path)); return; } |
