From 5b748a9a9e08ab861c6cf638c7ac41be990d9ce2 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sun, 6 Apr 2003 15:51:53 +0000 Subject: [PATCH] make sure the caption and icon are set --- stepmania/src/StepMania.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/stepmania/src/StepMania.cpp b/stepmania/src/StepMania.cpp index 6fd3ed3beb..b17f68e4e4 100644 --- a/stepmania/src/StepMania.cpp +++ b/stepmania/src/StepMania.cpp @@ -303,6 +303,10 @@ int main(int argc, char* argv[]) PREFSMAN->m_bVsync ); TEXTUREMAN = new RageTextureManager( PREFSMAN->m_iTextureColorDepth, PREFSMAN->m_iUnloadTextureDelaySeconds, PREFSMAN->m_iMaxTextureResolution ); + /* We might have a new window, so let's make sure window properties are still set. */ + SDL_WM_SetCaption("StepMania", "StepMania"); + SetIcon(); + /* Grab the window manager specific information */ SDL_SysWMinfo info; SDL_VERSION(&info.version);