mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-01-20 16:41:02 +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;
|
FString mapname = nextmapname;
|
||||||
mapname.ToUpper();
|
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.
|
// Set the sky map.
|
||||||
|
|
Loading…
Reference in a new issue