mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-16 17:41:19 +00:00
- fixed text color setup for added console message.
This commit is contained in:
parent
14981adb6a
commit
75f5318b00
1 changed files with 1 additions and 1 deletions
|
@ -115,7 +115,7 @@ void FConsoleBuffer::AddText(int printlevel, const char *text, FILE *logfile)
|
||||||
if (printlevel >= 0 && printlevel != PRINT_HIGH)
|
if (printlevel >= 0 && printlevel != PRINT_HIGH)
|
||||||
{
|
{
|
||||||
if (printlevel == 200) build = TEXTCOLOR_GREEN;
|
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);
|
size_t textsize = strlen(text);
|
||||||
|
|
Loading…
Reference in a new issue