mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 23:02:08 +00:00
- fixed text color setup for added console message.
This commit is contained in:
parent
8a90946094
commit
4d2a7930ac
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue