mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-06 15:05:59 +00:00
wx: UTF8 path fix
This commit is contained in:
parent
cdc49d166e
commit
14e5aa57c8
2 changed files with 15 additions and 9 deletions
|
|
@ -235,7 +235,7 @@ void GameViewer::RemoveGame(wxCommandEvent& event)
|
|||
|
||||
if (wxMessageBox("Permanently delete game files?", "Confirm Delete", wxYES_NO | wxNO_DEFAULT) == wxYES)
|
||||
{
|
||||
fs::remove_all(Emu.GetGameDir() + this->GetItemText(i, 6).ToStdString());
|
||||
fs::remove_all(Emu.GetGameDir() + fmt::ToUTF8(this->GetItemText(i, 6)));
|
||||
}
|
||||
|
||||
Refresh();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue