DolphinWX: Remove two c_str calls in ISOProperties.cpp.

This commit is contained in:
Lioncash 2014-07-13 23:43:41 -04:00
parent 5c57a1ef4b
commit d931637d63

View File

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