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 } }