From 41895acb31649cbe1a8054fa61d21c15eb71525a Mon Sep 17 00:00:00 2001 From: marco-calautti Date: Fri, 29 Dec 2023 13:24:13 +0100 Subject: [PATCH] Fixed error message icon --- app/src/gui/DeltaPatcherEncodePanel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/gui/DeltaPatcherEncodePanel.cpp b/app/src/gui/DeltaPatcherEncodePanel.cpp index e2f7171..0715408 100644 --- a/app/src/gui/DeltaPatcherEncodePanel.cpp +++ b/app/src/gui/DeltaPatcherEncodePanel.cpp @@ -280,7 +280,7 @@ void DeltaPatcherEncodePanel::OnThreadUpdate(wxThreadEvent& evt) if(code!=0){ logger->Log(Logger::LOG_ERROR,message); - wxGenericMessageDialog(this,_("An error has occurred!\nSee log for more information."),_("Warning"),wxICON_EXCLAMATION).ShowModal(); + wxGenericMessageDialog(this,_("An error has occurred!\nSee log for more information."),_("Warning"),wxICON_ERROR).ShowModal(); }else{ logger->Log(Logger::LOG_MESSAGE,_("Patch successfully created!")); wxGenericMessageDialog(this,_("Patch successfully created!"),_("Notice"),wxICON_INFORMATION).ShowModal();