From 69ebd9a95d5d2585e1d08c0fd95f45228a45289e Mon Sep 17 00:00:00 2001 From: Rachael Alexanderson Date: Thu, 23 Jan 2020 13:05:09 -0500 Subject: [PATCH] - update shadow warrior's PutStringInfo to put newlines in the console automatically (it was this, or update every use of PutStringInfo to have them) --- source/sw/src/text.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/sw/src/text.cpp b/source/sw/src/text.cpp index 3d0f1b6f1..da61e69ab 100644 --- a/source/sw/src/text.cpp +++ b/source/sw/src/text.cpp @@ -437,7 +437,7 @@ void PutStringInfo(PLAYERp pp, const char *string) if (!hud_messages) return; - Printf(PRINT_MEDIUM|PRINT_NOTIFY, "%s", string); // Put it in the console too + Printf(PRINT_MEDIUM|PRINT_NOTIFY, "%s\n", string); // Put it in the console too if (hud_messages == 1) PutStringInfoLine(pp, string); }