DolphinWX: Use a regular wxMessageBox instead of a PanicAlert for non-panic errors.

This commit is contained in:
Lioncash
2014-07-24 21:46:46 -04:00
parent a723fd39df
commit 0ed29e1fac
18 changed files with 106 additions and 89 deletions

View File

@ -1169,7 +1169,7 @@ void CGameListCtrl::CompressSelection(bool _compress)
}
if (!all_good)
wxMessageBox(_("Dolphin was unable to complete the requested action."));
WxUtils::ShowErrorDialog(_("Dolphin was unable to complete the requested action."));
Update();
}
@ -1255,7 +1255,7 @@ void CGameListCtrl::OnCompressGCM(wxCommandEvent& WXUNUSED (event))
}
if (!all_good)
wxMessageBox(_("Dolphin was unable to complete the requested action."));
WxUtils::ShowErrorDialog(_("Dolphin was unable to complete the requested action."));
Update();
}