From c5147c01a09dbcbb1a57511f32824b5e0cf2a7c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Rydg=C3=A5rd?= Date: Sun, 16 Aug 2020 00:38:31 +0200 Subject: [PATCH] Fix newlines in logging before the manager is initialized. --- Common/LogManager.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Common/LogManager.cpp b/Common/LogManager.cpp index 8adf305dd6..84a91f6530 100644 --- a/Common/LogManager.cpp +++ b/Common/LogManager.cpp @@ -52,6 +52,7 @@ void GenericLog(LogTypes::LOG_LEVELS level, LogTypes::LOG_TYPE type, const char } else { // Fall back to printf if we're before the log manager has been initialized. vprintf(fmt, args); + printf("\n"); } va_end(args); }