Commit 5aafadda authored by Patrice Mandin's avatar Patrice Mandin

Simplify setting window title

--HG--
branch : SDL-1.2
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/branches/SDL-1.2%402511
parent 03537c73
...@@ -167,16 +167,14 @@ void GEM_PumpEvents(_THIS) ...@@ -167,16 +167,14 @@ void GEM_PumpEvents(_THIS)
/* Refresh window name ? */ /* Refresh window name ? */
if (GEM_refresh_name) { if (GEM_refresh_name) {
if ( SDL_GetAppState() & SDL_APPACTIVE ) { const char *window_name =
/* Fullscreen/windowed */ (SDL_GetAppState() & SDL_APPACTIVE)
if (GEM_title_name) { ? GEM_title_name : GEM_icon_name;
wind_set(GEM_handle,WF_NAME,(short)(((unsigned long)GEM_title_name)>>16),(short)(((unsigned long)GEM_title_name) & 0xffff),0,0); if (window_name) {
} wind_set(GEM_handle,WF_NAME,
} else { (short)(((unsigned long)window_name)>>16),
/* Iconified */ (short)(((unsigned long)window_name) & 0xffff),
if (GEM_icon_name) { 0,0);
wind_set(GEM_handle,WF_NAME,(short)(((unsigned long)GEM_icon_name)>>16),(short)(((unsigned long)GEM_icon_name) & 0xffff),0,0);
}
} }
GEM_refresh_name = SDL_FALSE; GEM_refresh_name = SDL_FALSE;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment