- changed printlevel for console output of centered messages.

This commit is contained in:
Christoph Oelckers 2019-04-06 11:23:19 +02:00
parent b01529f473
commit 47a52e6a7b
1 changed files with 1 additions and 1 deletions

View File

@ -1754,7 +1754,7 @@ void C_MidPrint (FFont *font, const char *msg, bool bold)
if (msg != nullptr)
{
auto color = (EColorRange)PrintColors[bold? PRINTLEVELS+1 : PRINTLEVELS];
Printf(PRINT_NONOTIFY, TEXTCOLOR_ESCAPESTR "%c%s\n%s\n%s\n", color, console_bar, msg, console_bar);
Printf(PRINT_HIGH|PRINT_NONOTIFY, TEXTCOLOR_ESCAPESTR "%c%s\n%s\n%s\n", color, console_bar, msg, console_bar);
bool altscale = false;
if (font == nullptr)