diff --git a/src/g_level.cpp b/src/g_level.cpp index 2d44bfc27..7593a3812 100644 --- a/src/g_level.cpp +++ b/src/g_level.cpp @@ -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;