Forgot newline for release

This commit is contained in:
6arelyFuture 2022-05-17 16:38:41 +02:00
parent 6bc7f30f19
commit 5f754be07a
Signed by: Future
GPG Key ID: FA77F074E98D98A5

View File

@ -41,7 +41,7 @@ void console_print(std::string_view fmt, std::format_args&& args) {
std::format("Debug:\n {}\nFile: {}\nFunction: {}\n\n", msg, std::format("Debug:\n {}\nFile: {}\nFunction: {}\n\n", msg,
location.file_name(), location.function_name()); location.file_name(), location.function_name());
#else #else
const auto line = std::vformat(fmt, args); const auto line = std::vformat(fmt, args) + "\n";
#endif #endif
if (IsDebuggerPresent()) { if (IsDebuggerPresent()) {