aboutsummaryrefslogtreecommitdiffstats
path: root/code/win32
diff options
context:
space:
mode:
Diffstat (limited to 'code/win32')
-rw-r--r--code/win32/win_glimp.c8
-rw-r--r--code/win32/win_syscon.c2
2 files changed, 4 insertions, 6 deletions
diff --git a/code/win32/win_glimp.c b/code/win32/win_glimp.c
index b6c602a..4f97f04 100644
--- a/code/win32/win_glimp.c
+++ b/code/win32/win_glimp.c
@@ -57,8 +57,6 @@ typedef enum {
#define TRY_PFD_FAIL_SOFT 1
#define TRY_PFD_FAIL_HARD 2
-#define WINDOW_CLASS_NAME "Quake 3: Arena"
-
static void GLW_InitExtensions( void );
static rserr_t GLW_SetMode( const char *drivername,
int mode,
@@ -600,7 +598,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 ) )
{
@@ -669,8 +667,8 @@ static qboolean GLW_CreateWindow( const char *drivername, int width, int height,
g_wv.hWnd = CreateWindowEx (
exstyle,
- WINDOW_CLASS_NAME,
- "Quake 3: Arena",
+ CLIENT_WINDOW_TITLE,
+ CLIENT_WINDOW_TITLE,
stylebits,
x, y, w, h,
NULL,
diff --git a/code/win32/win_syscon.c b/code/win32/win_syscon.c
index 2308c0f..3e14840 100644
--- a/code/win32/win_syscon.c
+++ b/code/win32/win_syscon.c
@@ -334,7 +334,7 @@ void Sys_CreateConsole( void )
s_wcd.hWnd = CreateWindowEx( 0,
DEDCLASS,
- "Quake 3 Console",
+ CONSOLE_WINDOW_TITLE,
DEDSTYLE,
( swidth - 600 ) / 2, ( sheight - 450 ) / 2 , rect.right - rect.left + 1, rect.bottom - rect.top + 1,
NULL,