mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-12-13 13:40:56 +00:00
Fix systeminfo command, fix by DevHC
This commit is contained in:
parent
0387b8002e
commit
21668c0616
2 changed files with 4 additions and 4 deletions
|
@ -509,8 +509,8 @@ qboolean Com_AddStartupCommands( void ) {
|
||||||
//============================================================================
|
//============================================================================
|
||||||
|
|
||||||
void Info_Print( const char *s ) {
|
void Info_Print( const char *s ) {
|
||||||
char key[512];
|
char key[BIG_INFO_KEY];
|
||||||
char value[512];
|
char value[BIG_INFO_VALUE];
|
||||||
char *o;
|
char *o;
|
||||||
int l;
|
int l;
|
||||||
|
|
||||||
|
@ -530,7 +530,7 @@ void Info_Print( const char *s ) {
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
*o = 0;
|
*o = 0;
|
||||||
Com_Printf ("%s", key);
|
Com_Printf ("%s ", key);
|
||||||
|
|
||||||
if (!*s)
|
if (!*s)
|
||||||
{
|
{
|
||||||
|
|
|
@ -1199,7 +1199,7 @@ Examine or change the serverinfo string
|
||||||
*/
|
*/
|
||||||
static void SV_Systeminfo_f( void ) {
|
static void SV_Systeminfo_f( void ) {
|
||||||
Com_Printf ("System info settings:\n");
|
Com_Printf ("System info settings:\n");
|
||||||
Info_Print ( Cvar_InfoString( CVAR_SYSTEMINFO ) );
|
Info_Print ( Cvar_InfoString_Big( CVAR_SYSTEMINFO ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue