From b605ae52130513ac0a6f45f2e15fc62c8e0dac66 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 10 Mar 2019 23:29:33 +0100 Subject: [PATCH] - reactivated the formatting for the secret hints. This had to be temporarily disabled for the font switch and wasn't undone afterward. --- src/c_cmds.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/c_cmds.cpp b/src/c_cmds.cpp index c30e078e5..aa0af97b3 100644 --- a/src/c_cmds.cpp +++ b/src/c_cmds.cpp @@ -1199,16 +1199,12 @@ static void PrintSecretString(const char *string, bool thislevel) else colstr = TEXTCOLOR_GREEN; } } -#if 0 auto brok = V_BreakLines(CurrentConsoleFont, screen->GetWidth()*95/100, string); for (auto &line : brok) { Printf("%s%s\n", colstr, line.Text.GetChars()); } -#else - Printf("%s%s\n", string); -#endif } }