From 86edfd490a63a45da2b8d8ba76444400afd208e3 Mon Sep 17 00:00:00 2001 From: mjbudd77 Date: Sat, 10 Apr 2021 09:40:20 -0400 Subject: [PATCH] Changed Qt warnings to not display as error dialogs, instead just prints to main log. --- src/drivers/Qt/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/drivers/Qt/main.cpp b/src/drivers/Qt/main.cpp index 16f02a53..7d874ebc 100644 --- a/src/drivers/Qt/main.cpp +++ b/src/drivers/Qt/main.cpp @@ -45,7 +45,7 @@ static void MessageOutput(QtMsgType type, const QMessageLogContext &context, con break; case QtWarningMsg: sprintf( cmsg, "Qt Warning: %s (%s:%u, %s)\n", localMsg.constData(), file, context.line, function); - FCEUD_PrintError(cmsg); + FCEUD_Message(cmsg); break; case QtCriticalMsg: sprintf( cmsg, "Qt Critical: %s (%s:%u, %s)\n", localMsg.constData(), file, context.line, function);