From e5486f67cca20bc423b7e40a5bdd8ad0c68c0ff5 Mon Sep 17 00:00:00 2001 From: Patryk Obara Date: Wed, 15 Apr 2020 18:16:35 +0200 Subject: [PATCH] Use half-pause character as title separator It seems like most applications on Windows and Linux use half-pause for this purpose (same character as minus sign). --- src/gui/sdlmain.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/sdlmain.cpp b/src/gui/sdlmain.cpp index 9989333d..c5518ce6 100644 --- a/src/gui/sdlmain.cpp +++ b/src/gui/sdlmain.cpp @@ -429,8 +429,8 @@ void GFX_SetTitle(Bit32s cycles, int /*frameskip*/, bool paused) internal_cycles = cycles; const char *msg = CPU_CycleAutoAdjust - ? "%8s, max %d%%, dosbox-staging%s" - : "%8s, %d cycles/ms, dosbox-staging%s"; + ? "%8s - max %d%% - dosbox-staging%s" + : "%8s - %d cycles/ms - dosbox-staging%s"; snprintf(title, sizeof(title), msg, RunningProgram, internal_cycles, paused ? " (PAUSED)" : ""); SDL_SetWindowTitle(sdl.window, title);