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)