mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-02 22:29:21 +00:00
DolphinWX: Remove two c_str calls in ISOProperties.cpp.
This commit is contained in:
parent
5c57a1ef4b
commit
d931637d63
1 changed files with 2 additions and 2 deletions
|
@ -866,9 +866,9 @@ void CISOProperties::OnExtractDir(wxCommandEvent& event)
|
||||||
{
|
{
|
||||||
if (DiscIO::IsVolumeWiiDisc(OpenISO))
|
if (DiscIO::IsVolumeWiiDisc(OpenISO))
|
||||||
for (u32 i = 0; i < WiiDisc.size(); i++)
|
for (u32 i = 0; i < WiiDisc.size(); i++)
|
||||||
ExportDir("", WxStrToStr(Path).c_str(), i);
|
ExportDir("", WxStrToStr(Path), i);
|
||||||
else
|
else
|
||||||
ExportDir("", WxStrToStr(Path).c_str());
|
ExportDir("", WxStrToStr(Path));
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue