summaryrefslogtreecommitdiff
path: root/src/win32
diff options
context:
space:
mode:
authorTim Angus <tim@ngus.net>2006-04-16 00:38:56 +0000
committerTim Angus <tim@ngus.net>2006-04-16 00:38:56 +0000
commitdfa4bb52a7ac0b1f99d1ce9f78ec0ffbb7d7febc (patch)
tree5a9285a1e1b232615ad964efc09237fe2d0b60b1 /src/win32
parent85a7e9ef79326422e1fea85d7668f37c24c3dd93 (diff)
* Merged ioq3-r708
Diffstat (limited to 'src/win32')
-rw-r--r--src/win32/win_glimp.c8
-rw-r--r--src/win32/win_syscon.c2
2 files changed, 4 insertions, 6 deletions
diff --git a/src/win32/win_glimp.c b/src/win32/win_glimp.c
index ce23123e..187fd7b9 100644
--- a/src/win32/win_glimp.c
+++ b/src/win32/win_glimp.c
@@ -58,8 +58,6 @@ typedef enum {
#define TRY_PFD_FAIL_SOFT 1
#define TRY_PFD_FAIL_HARD 2
-#define WINDOW_CLASS_NAME "Tremulous"
-
static void GLW_InitExtensions( void );
static rserr_t GLW_SetMode( const char *drivername,
int mode,
@@ -601,7 +599,7 @@ static qboolean GLW_CreateWindow( const char *drivername, int width, int height,
wc.hCursor = LoadCursor (NULL,IDC_ARROW);
wc.hbrBackground = (void *)COLOR_GRAYTEXT;
wc.lpszMenuName = 0;
- wc.lpszClassName = WINDOW_CLASS_NAME;
+ wc.lpszClassName = CLIENT_WINDOW_TITLE;
if ( !RegisterClass( &wc ) )
{
@@ -670,8 +668,8 @@ static qboolean GLW_CreateWindow( const char *drivername, int width, int height,
g_wv.hWnd = CreateWindowEx (
exstyle,
- WINDOW_CLASS_NAME,
- "Tremulous",
+ CLIENT_WINDOW_TITLE,
+ CLIENT_WINDOW_TITLE,
stylebits,
x, y, w, h,
NULL,
diff --git a/src/win32/win_syscon.c b/src/win32/win_syscon.c
index abce4cb7..7fa21a4f 100644
--- a/src/win32/win_syscon.c
+++ b/src/win32/win_syscon.c
@@ -335,7 +335,7 @@ void Sys_CreateConsole( void )
s_wcd.hWnd = CreateWindowEx( 0,
DEDCLASS,
- "Tremulous Console",
+ CONSOLE_WINDOW_TITLE,
DEDSTYLE,
( swidth - 600 ) / 2, ( sheight - 450 ) / 2 , rect.right - rect.left + 1, rect.bottom - rect.top + 1,
NULL,