mirror of
https://github.com/w23/xash3d-fwgs
synced 2024-11-15 14:36:42 +01:00
engine: server: fix output of maps command
This commit is contained in:
parent
5e4996b119
commit
0d195ee6fe
@ -265,7 +265,7 @@ void SV_Maps_f( void )
|
||||
|
||||
Mem_Free( mapList );
|
||||
|
||||
Msg( "%s\nDirectory: \"%s/maps\" - Maps listed: %d\n", separator, GI->basedir, nummaps );
|
||||
Msg( "%s\nDirectory: \"%s/maps\" - Maps listed: %d\n", separator, GI->gamefolder, nummaps );
|
||||
}
|
||||
|
||||
/*
|
||||
@ -763,7 +763,7 @@ void SV_ServerInfo_f( void )
|
||||
{
|
||||
Con_Printf( "Server info settings:\n" );
|
||||
Info_Print( svs.serverinfo );
|
||||
Con_Printf( "Total %i symbols\n", Q_strlen( svs.serverinfo ));
|
||||
Con_Printf( "Total %lu symbols\n", Q_strlen( svs.serverinfo ));
|
||||
return;
|
||||
}
|
||||
|
||||
@ -805,7 +805,7 @@ void SV_LocalInfo_f( void )
|
||||
{
|
||||
Con_Printf( "Local info settings:\n" );
|
||||
Info_Print( svs.localinfo );
|
||||
Con_Printf( "Total %i symbols\n", Q_strlen( svs.localinfo ));
|
||||
Con_Printf( "Total %lu symbols\n", Q_strlen( svs.localinfo ));
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user