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).
This commit is contained in:
parent
b3a3c5dfe5
commit
e5486f67cc
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue