From 6ab73f56735f1439aea0edac3cc37ab8cdbf496b Mon Sep 17 00:00:00 2001 From: mcmartin Date: Tue, 17 May 2005 01:58:06 +0000 Subject: [PATCH] Consistent window captioning, to use patch version. git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@1794 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/src/sc2code/libs/graphics/sdl/sdl_common.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sc2/src/sc2code/libs/graphics/sdl/sdl_common.c b/sc2/src/sc2code/libs/graphics/sdl/sdl_common.c index 235f15226..4ff09f836 100644 --- a/sc2/src/sc2code/libs/graphics/sdl/sdl_common.c +++ b/sc2/src/sc2code/libs/graphics/sdl/sdl_common.c @@ -140,8 +140,9 @@ TFB_InitGraphics (int driver, int flags, int width, int height, int bpp) result = TFB_Pure_InitGraphics (driver, flags, width, height, bpp); } - sprintf (caption, "The Ur-Quan Masters v%d.%d%s", - UQM_MAJOR_VERSION, UQM_MINOR_VERSION, UQM_EXTRA_VERSION); + sprintf (caption, "The Ur-Quan Masters v%d.%d.%d%s", + UQM_MAJOR_VERSION, UQM_MINOR_VERSION, + UQM_PATCH_VERSION, UQM_EXTRA_VERSION); SDL_WM_SetCaption (caption, NULL); if (flags & TFB_GFXFLAGS_FULLSCREEN)