Simplify setting window title
--HG-- branch : SDL-1.2 extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/branches/SDL-1.2%402511
This commit is contained in:
parent
03537c7353
commit
5aafadda16
1 changed files with 8 additions and 10 deletions
|
@ -167,16 +167,14 @@ void GEM_PumpEvents(_THIS)
|
|||
|
||||
/* Refresh window name ? */
|
||||
if (GEM_refresh_name) {
|
||||
if ( SDL_GetAppState() & SDL_APPACTIVE ) {
|
||||
/* Fullscreen/windowed */
|
||||
if (GEM_title_name) {
|
||||
wind_set(GEM_handle,WF_NAME,(short)(((unsigned long)GEM_title_name)>>16),(short)(((unsigned long)GEM_title_name) & 0xffff),0,0);
|
||||
}
|
||||
} else {
|
||||
/* Iconified */
|
||||
if (GEM_icon_name) {
|
||||
wind_set(GEM_handle,WF_NAME,(short)(((unsigned long)GEM_icon_name)>>16),(short)(((unsigned long)GEM_icon_name) & 0xffff),0,0);
|
||||
}
|
||||
const char *window_name =
|
||||
(SDL_GetAppState() & SDL_APPACTIVE)
|
||||
? GEM_title_name : GEM_icon_name;
|
||||
if (window_name) {
|
||||
wind_set(GEM_handle,WF_NAME,
|
||||
(short)(((unsigned long)window_name)>>16),
|
||||
(short)(((unsigned long)window_name) & 0xffff),
|
||||
0,0);
|
||||
}
|
||||
GEM_refresh_name = SDL_FALSE;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue