When playing a user map, print "User Map: <filename>" to the log instead of "E1L8: User Map".

git-svn-id: https://svn.eduke32.com/eduke32@6618 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
hendricks266 2018-01-29 11:13:37 +00:00
parent 2679b42e72
commit 254b822003
1 changed files with 9 additions and 2 deletions

View File

@ -2028,8 +2028,15 @@ int G_EnterLevel(int gameMode)
break;
}
OSD_Printf(OSDTEXT_YELLOW "E%dL%d: %s\n", ud.volume_number+1, ud.level_number+1,
g_mapInfo[mii].name);
if (G_HaveUserMap())
{
OSD_Printf(OSDTEXT_YELLOW "User Map: %s\n", boardfilename);
}
else
{
OSD_Printf(OSDTEXT_YELLOW "E%dL%d: %s\n", ud.volume_number+1, ud.level_number+1,
g_mapInfo[mii].name);
}
g_restorePalette = -1;