mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
DolphinWX: Use a regular wxMessageBox instead of a PanicAlert for non-panic errors.
This commit is contained in:
@ -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();
|
||||
}
|
||||
|
Reference in New Issue
Block a user