From dcdc1fc54b217ec073d85b1199f3eb2678a32dbe Mon Sep 17 00:00:00 2001 From: Chee Yee Date: Tue, 16 Jul 2024 21:27:12 -0700 Subject: [PATCH] use spaces for separator, seems less overcrowded --- source/windows.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/windows.cpp b/source/windows.cpp index 07e8a02..b24652c 100644 --- a/source/windows.cpp +++ b/source/windows.cpp @@ -332,7 +332,7 @@ namespace Windows { const bool is_selected = strcmp(sites[n].c_str(), last_site) == 0; sprintf(site_id, "%s %d", lang_strings[STR_SITE], n + 1); - sprintf(site_display, "%s %d - %s", lang_strings[STR_SITE], n + 1, site_settings[sites[n]].server); + sprintf(site_display, "%s %d %s", lang_strings[STR_SITE], n + 1, site_settings[sites[n]].server); if (ImGui::Selectable(site_display, is_selected)) { sprintf(last_site, "%s", sites[n].c_str());