Description
I came across this playing the excellent MS-DOS Game collection at the Internet Archive, great work! I was confused by the games there putting, e.g. "DOSBox SVN, CPU speed: 3000 cycles, Frameskip 0, Program: STUNT" in the window title (thus browser tab and browser history). Tabs and dropdowns cut off the end of this so you don't see what program you're running and it's quite confusing.
Em-DOSBox's GFX_SetTitle()
in src/gui/sdlmain.cpp sets the title to the nerdy
"DOSBox %s, CPU speed: %8d cycles, Frameskip %2d, Program: %8s",VERSION,internal_cycles,internal_frameskip,RunningProgram)
a friendlier layout with the key information first would be
"STUNT running in Em-DOSBox v. SVN (CPU speed: 3000 cycles, Frameskip 0)
(the misleading version "number" SVN comes from src/platform/visualc/config.h).