summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Howard2006-01-14 00:27:16 +0000
committerSimon Howard2006-01-14 00:27:16 +0000
commit30d42171fd1dbf114cd55debe9ec626571816741 (patch)
treee761946f930e54abf7f984ae035230dd207c56a9
parent975c252122aee6338c1b284bb6fbd24485b86723 (diff)
downloadchocolate-doom-30d42171fd1dbf114cd55debe9ec626571816741.tar.gz
chocolate-doom-30d42171fd1dbf114cd55debe9ec626571816741.tar.bz2
chocolate-doom-30d42171fd1dbf114cd55debe9ec626571816741.zip
Set the window caption and title
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 294
-rw-r--r--src/net_gui.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/net_gui.c b/src/net_gui.c
index f3cc72f7..3cf3ad0c 100644
--- a/src/net_gui.c
+++ b/src/net_gui.c
@@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
-// $Id: net_gui.c 293 2006-01-14 00:13:04Z fraggle $
+// $Id: net_gui.c 294 2006-01-14 00:27:16Z fraggle $
//
// Copyright(C) 2005 Simon Howard
//
@@ -21,6 +21,9 @@
// 02111-1307, USA.
//
// $Log$
+// Revision 1.12 2006/01/14 00:27:16 fraggle
+// Set the window caption and title
+//
// Revision 1.11 2006/01/14 00:13:04 fraggle
// Detect if disconnected from the server while waiting for the game start.
//
@@ -75,6 +78,7 @@
#include "doomstat.h"
#include "i_system.h"
+#include "i_video.h"
#include "net_client.h"
#include "net_gui.h"
@@ -165,6 +169,8 @@ static void DrawScreen(void)
void NET_WaitForStart(void)
{
TXT_Init();
+ I_SetWindowCaption();
+ I_SetWindowIcon();
while (net_waiting_for_start)
{