From d931637d63f361b0523f415ea90c6bdde1b708bb Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sun, 13 Jul 2014 23:43:41 -0400 Subject: [PATCH] DolphinWX: Remove two c_str calls in ISOProperties.cpp. --- Source/Core/DolphinWX/ISOProperties.cpp | 4 ++-- 1 file 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; }