- extended 'listmaps' by also printing the display name for the map.

This commit is contained in:
Christoph Oelckers 2020-10-14 00:58:43 +02:00
parent d368d734d3
commit c17808d789

View file

@ -55,7 +55,7 @@ CCMD(listmaps)
{
for (unsigned int i = 0; i < numUsedSlots; i++)
{
Printf("%s\n", mapList[i].fileName.GetChars());
Printf("%s - %s\n", mapList[i].fileName.GetChars(), mapList[i].DisplayName());
}
}