From 4e3ad17e4add198c4ea69182cf1c05edfb6abdd6 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sat, 2 Nov 2019 21:43:17 +0100 Subject: [PATCH] - tweaking of the game selection display. --- source/platform/win32/startwin.game.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/source/platform/win32/startwin.game.cpp b/source/platform/win32/startwin.game.cpp index f616d429e..60d387675 100644 --- a/source/platform/win32/startwin.game.cpp +++ b/source/platform/win32/startwin.game.cpp @@ -184,7 +184,10 @@ static void PopulateForm(int32_t pgs) int i=0; for (auto& grp : *gamedata) { - FStringf grpinfo("%s %s", grp.FileInfo.name.GetChars(), grp.FileName.GetChars()); + auto p = grp.FileName.LastIndexOfAny("/\\"); + auto c = grp.FileName.GetChars(); + if (p > 0) c += p+1; + FStringf grpinfo("%s\t%s", grp.FileInfo.name.GetChars(), c); int const j = ListBox_AddString(hwnd, grpinfo.GetChars()); (void)ListBox_SetItemData(hwnd, j, i); i++;