Changed Qt warnings to not display as error dialogs, instead just prints

to main log.
This commit is contained in:
mjbudd77 2021-04-10 09:40:20 -04:00
parent 7f85544e63
commit 86edfd490a
1 changed files with 1 additions and 1 deletions

View File

@ -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);