diff --git a/engine/platform/win32/con_win.c b/engine/platform/win32/con_win.c index 4506063a..63a4102b 100644 --- a/engine/platform/win32/con_win.c +++ b/engine/platform/win32/con_win.c @@ -499,12 +499,12 @@ void Wcon_CreateConsole( void ) if( host.type == HOST_NORMAL ) { - Q_strncpy( s_wcd.title, va( "Xash3D %s", XASH_VERSION ), sizeof( s_wcd.title )); + Q_strncpy( s_wcd.title, "Xash3D " XASH_VERSION, sizeof( s_wcd.title )); Q_strncpy( s_wcd.log_path, "engine.log", sizeof( s_wcd.log_path )); } else // dedicated console { - Q_strncpy( s_wcd.title, va( "XashDS %s", XASH_VERSION ), sizeof( s_wcd.title )); + Q_strncpy( s_wcd.title, "XashDS " XASH_VERSION, sizeof( s_wcd.title )); Q_strncpy( s_wcd.log_path, "dedicated.log", sizeof( s_wcd.log_path )); s_wcd.log_active = true; // always make log }