Fix: don't show OS error box for non GUI video drivers

pull/78/head
glx 5 years ago committed by glx22
parent 530bdf33cc
commit ba38a7ca65

@ -117,7 +117,9 @@ void CDECL error(const char *s, ...)
vseprintf(buf, lastof(buf), s, va);
va_end(va);
ShowOSErrorBox(buf, true);
if (VideoDriver::GetInstance() == NULL || VideoDriver::GetInstance()->HasGUI()) {
ShowOSErrorBox(buf, true);
}
/* Set the error message for the crash log and then invoke it. */
CrashLog::SetErrorMessage(buf);

Loading…
Cancel
Save