win_con: fix version in title, change title for dedicated server
This commit is contained in:
parent
c603abfebf
commit
68ed732928
1 changed files with 2 additions and 2 deletions
|
@ -290,7 +290,7 @@ void Wcon_CreateConsole( void )
|
|||
rect.top = 0;
|
||||
rect.bottom = 364;
|
||||
Q_strncpy( FontName, "Fixedsys", sizeof( FontName ));
|
||||
Q_strncpy( s_wcd.title, va( "Xash3D %g", XASH_VERSION ), sizeof( s_wcd.title ));
|
||||
Q_strncpy( s_wcd.title, va( "Xash3D %s", XASH_VERSION ), sizeof( s_wcd.title ));
|
||||
Q_strncpy( s_wcd.log_path, "engine.log", sizeof( s_wcd.log_path ));
|
||||
fontsize = 8;
|
||||
}
|
||||
|
@ -301,7 +301,7 @@ void Wcon_CreateConsole( void )
|
|||
rect.top = 0;
|
||||
rect.bottom = 392;
|
||||
Q_strncpy( FontName, "System", sizeof( FontName ));
|
||||
Q_strncpy( s_wcd.title, "Xash Dedicated Server", sizeof( s_wcd.title ));
|
||||
Q_strncpy( s_wcd.title, va( "XashDS %s", 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
|
||||
fontsize = 14;
|
||||
|
|
Loading…
Add table
Reference in a new issue