diff options
Diffstat (limited to 'Source/Core/DolphinWX/ARCodeAddEdit.cpp')
| -rw-r--r-- | Source/Core/DolphinWX/ARCodeAddEdit.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/Core/DolphinWX/ARCodeAddEdit.cpp b/Source/Core/DolphinWX/ARCodeAddEdit.cpp index 6bcfc4fe8d..9920dea29e 100644 --- a/Source/Core/DolphinWX/ARCodeAddEdit.cpp +++ b/Source/Core/DolphinWX/ARCodeAddEdit.cpp @@ -12,6 +12,7 @@ #include <wx/event.h> #include <wx/gbsizer.h> #include <wx/gdicmn.h> +#include <wx/msgdlg.h> #include <wx/sizer.h> #include <wx/spinbutt.h> #include <wx/stattext.h> @@ -148,7 +149,7 @@ void CARCodeAddEdit::SaveCheatData(wxCommandEvent& WXUNUSED (event)) // Codes with no lines appear to be deleted/hidden from the list. Let's prevent that. if (!decryptedLines.size()) { - PanicAlertT("The resulting decrypted AR code doesn't contain any lines."); + WxUtils::ShowErrorDialog(_("The resulting decrypted AR code doesn't contain any lines.")); return; } |
