diff --git a/rpcs3/Gui/GameViewer.cpp b/rpcs3/Gui/GameViewer.cpp index 2048ae93d9..283725b2f7 100644 --- a/rpcs3/Gui/GameViewer.cpp +++ b/rpcs3/Gui/GameViewer.cpp @@ -233,8 +233,11 @@ void GameViewer::RemoveGame(wxCommandEvent& event) { long i = GetFirstSelected(); if (i < 0) return; - - fs::remove_all(vfs::get(m_path) + this->GetItemText(i, 6).ToStdString()); + + if (wxMessageBox("Permanently delete game files?", "Confirm Delete", wxYES_NO | wxNO_DEFAULT) == wxYES) + { + fs::remove_all(vfs::get(m_path) + this->GetItemText(i, 6).ToStdString()); + } Refresh(); }