From 5f754be07ae571363aca0f8d574378ad8d3f3e4d Mon Sep 17 00:00:00 2001 From: Diavolo Date: Tue, 17 May 2022 16:38:41 +0200 Subject: [PATCH] Forgot newline for release --- src/client/component/console.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/component/console.cpp b/src/client/component/console.cpp index cb36b37..220fe2d 100644 --- a/src/client/component/console.cpp +++ b/src/client/component/console.cpp @@ -41,7 +41,7 @@ void console_print(std::string_view fmt, std::format_args&& args) { std::format("Debug:\n {}\nFile: {}\nFunction: {}\n\n", msg, location.file_name(), location.function_name()); #else - const auto line = std::vformat(fmt, args); + const auto line = std::vformat(fmt, args) + "\n"; #endif if (IsDebuggerPresent()) {