Changed Qt warnings to not display as error dialogs, instead just prints
to main log.
This commit is contained in:
parent
7f85544e63
commit
86edfd490a
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue