mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 14:51:51 +00:00
When changing maps, print map name in console in lower case
This commit is contained in:
parent
a41af2de73
commit
e4a041cb4c
1 changed files with 3 additions and 1 deletions
|
@ -901,11 +901,13 @@ void G_DoLoadLevel (int position, bool autosave)
|
|||
if (level.flags2 & LEVEL2_FORCETEAMPLAYOFF)
|
||||
teamplay = false;
|
||||
|
||||
FString mapname = level.MapName;
|
||||
mapname.ToLower();
|
||||
Printf (
|
||||
"\n\35\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36"
|
||||
"\36\36\36\36\36\36\36\36\36\36\36\36\37\n\n"
|
||||
TEXTCOLOR_BOLD "%s - %s\n\n",
|
||||
level.MapName.GetChars(), level.LevelName.GetChars());
|
||||
mapname, level.LevelName.GetChars());
|
||||
|
||||
if (wipegamestate == GS_LEVEL)
|
||||
wipegamestate = GS_FORCEWIPE;
|
||||
|
|
Loading…
Reference in a new issue