From 055bd3b46408c81e3d70ce373a8c315b5db71aa5 Mon Sep 17 00:00:00 2001 From: Thilo Schulz Date: Sat, 18 Jun 2011 14:30:20 +0000 Subject: [PATCH] Bug 5047 - Win32 dedicated server console title should use define, patch by Zack Middleton --- code/sys/con_win32.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/sys/con_win32.c b/code/sys/con_win32.c index 787c74fb..94ca0b51 100644 --- a/code/sys/con_win32.c +++ b/code/sys/con_win32.c @@ -225,7 +225,7 @@ void CON_Init( void ) GetConsoleScreenBufferInfo( qconsole_hout, &info ); qconsole_attrib = info.wAttributes; - SetConsoleTitle("ioquake3 Dedicated Server Console"); + SetConsoleTitle(CLIENT_WINDOW_TITLE " Dedicated Server Console"); // make cursor invisible GetConsoleCursorInfo( qconsole_hout, &qconsole_orig_cursorinfo );