mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-01-20 08:31:11 +00:00
Fix print color of level load message.
This commit is contained in:
parent
a75a96d993
commit
2bb0dcca13
1 changed files with 1 additions and 1 deletions
|
@ -1395,7 +1395,7 @@ void FLevelLocals::DoLoadLevel(const FString &nextmapname, int position, bool au
|
|||
{
|
||||
FString mapname = nextmapname;
|
||||
mapname.ToUpper();
|
||||
Printf(PRINT_NONOTIFY, "\n%s\n\n" TEXTCOLOR_BOLD "%s - %s\n\n", console_bar, mapname.GetChars(), LevelName.GetChars());
|
||||
Printf(PRINT_NONOTIFY, "\n" TEXTCOLOR_NORMAL "%s\n\n" TEXTCOLOR_BOLD "%s - %s\n\n", console_bar, mapname.GetChars(), LevelName.GetChars());
|
||||
}
|
||||
|
||||
// Set the sky map.
|
||||
|
|
Loading…
Reference in a new issue