1
0
Fork 0

Added Version number to the Title.

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1277
This commit is contained in:
Peter Veenstra 2003-09-29 21:22:01 +00:00
parent 85f59175f6
commit f03d970888

View file

@ -16,7 +16,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/* $Id: sdlmain.cpp,v 1.43 2003-09-29 21:04:31 qbix79 Exp $ */
/* $Id: sdlmain.cpp,v 1.44 2003-09-29 21:22:01 qbix79 Exp $ */
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
@ -87,7 +87,7 @@ void GFX_SetTitle(Bits cycles,Bits frameskip){
static internal_frameskip=0;
if(cycles != -1) internal_cycles = cycles;
if(frameskip != -1) internal_frameskip = frameskip;
sprintf(title,"Cpu Cycles: %8d, Frameskip %2d",internal_cycles,internal_frameskip);
sprintf(title,"DOSBox %s, Cpu Cycles: %8d, Frameskip %2d",VERSION,internal_cycles,internal_frameskip);
SDL_WM_SetCaption(title,VERSION);
}