summaryrefslogtreecommitdiff
path: root/src/hexen/st_start.c
diff options
context:
space:
mode:
authorSimon Howard2008-12-20 20:36:52 +0000
committerSimon Howard2008-12-20 20:36:52 +0000
commit74e939aa51f40cd1ef3b40b82cd52f0fe6949828 (patch)
treeb384a240a3bdb957e2a28cb656a885baca656ce6 /src/hexen/st_start.c
parentb9b0c2abfbe194baf6d497f1c4a2165769f64ab3 (diff)
downloadchocolate-doom-74e939aa51f40cd1ef3b40b82cd52f0fe6949828.tar.gz
chocolate-doom-74e939aa51f40cd1ef3b40b82cd52f0fe6949828.tar.bz2
chocolate-doom-74e939aa51f40cd1ef3b40b82cd52f0fe6949828.zip
Fix Hexen startup code to set window title before setting video mode
(for Windows XP Luna) Subversion-branch: /branches/raven-branch Subversion-revision: 1424
Diffstat (limited to 'src/hexen/st_start.c')
-rw-r--r--src/hexen/st_start.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/hexen/st_start.c b/src/hexen/st_start.c
index 47e926e5..cd89484b 100644
--- a/src/hexen/st_start.c
+++ b/src/hexen/st_start.c
@@ -131,10 +131,11 @@ void ST_Init(void)
if (graphical_startup && !debugmode)
{
+ I_SetWindowTitleHR("Hexen startup - " PACKAGE_STRING);
+
// Set 640x480x16 mode
if (I_SetVideoModeHR())
{
- I_SetWindowTitleHR("Hexen startup - " PACKAGE_STRING);
using_graphical_startup = true;
S_StartSongName("orb", true);