From c17808d789c91f031b8a85a221109c1ef4faae99 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Wed, 14 Oct 2020 00:58:43 +0200 Subject: [PATCH] - extended 'listmaps' by also printing the display name for the map. --- source/core/mapinfo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/core/mapinfo.cpp b/source/core/mapinfo.cpp index f2c9d9fa1..ef8ddbd60 100644 --- a/source/core/mapinfo.cpp +++ b/source/core/mapinfo.cpp @@ -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()); } }