Merge pull request #1369 from jgoyvaerts/logger_fix

[Base] Flush the logger before exiting on a fatal error.
This commit is contained in:
Rick Gibbed
2019-05-11 11:45:00 -05:00
committed by GitHub

View File

@@ -328,7 +328,7 @@ void FatalError(const char* fmt, ...) {
MB_OK | MB_ICONERROR | MB_APPLMODAL | MB_SETFOREGROUND);
}
#endif // WIN32
ShutdownLogging();
exit(1);
}