Change a PanicYesNo to a PanicAlert

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5281 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
NeoBrainX 2010-04-05 10:19:38 +00:00
parent 758bcf17cb
commit 131bb78897
1 changed files with 1 additions and 1 deletions

View File

@ -517,7 +517,7 @@ void CISOProperties::CreateGUIControls(bool IsWad)
void CISOProperties::OnClose(wxCloseEvent& WXUNUSED (event))
{
if (!SaveGameConfig())
PanicYesNo("Could not save %s", GameIniFile.c_str());
PanicAlert("Could not save %s", GameIniFile.c_str());
EndModal(bRefreshList ? wxID_OK : wxID_CANCEL);
}