- fixed text color setup for added console message.

This commit is contained in:
Christoph Oelckers 2019-05-22 10:17:49 +02:00 committed by Rachael Alexanderson
parent 3aa4425026
commit a4d5ee83ca

View file

@ -88,7 +88,7 @@ void FConsoleBuffer::AddText(int printlevel, const char *text)
if (printlevel >= 0 && printlevel != PRINT_HIGH)
{
if (printlevel == 200) build = TEXTCOLOR_GREEN;
else if (printlevel < PRINTLEVELS) build.Format("%c%c", TEXTCOLOR_ESCAPE, PrintColors[printlevel]);
else if (printlevel < PRINTLEVELS) build.Format("%c%c", TEXTCOLOR_ESCAPE, PrintColors[printlevel]+'A');
}
size_t textsize = strlen(text);