ref: b22df6a13aedecce1818c41eb38b265b066f3eda
parent: b00b65538a1f7a04fdd46d7c193a7c59733fde9b
author: Simon Howard <[email protected]>
date: Tue Dec 9 19:00:55 EST 2008
Fix window icon/title under Windows XP Luna theme. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 1415
--- a/src/i_video.c
+++ b/src/i_video.c
@@ -1481,6 +1481,12 @@
}
}
+ // Set up title and icon. Windows cares about the ordering; this
+ // has to be done before the call to SDL_SetVideoMode.
+
+ I_SetWindowCaption();
+ I_SetWindowIcon();
+
// Set the video mode.
flags |= SDL_SWSURFACE | SDL_HWPALETTE | SDL_DOUBLEBUF;
@@ -1517,11 +1523,6 @@
I_SetPalette(doompal);
SDL_SetColors(screen, palette, 0, 256);
-
- // Setup title and icon
-
- I_SetWindowCaption();
- I_SetWindowIcon();
CreateCursors();