* Fix some recently introduced warnings

* Fix referenced pk3 list including excessive number of spaces
This commit is contained in:
Tim Angus 2008-04-12 18:58:06 +00:00
parent 563eb9443b
commit 845de6a960
3 changed files with 4 additions and 5 deletions

View File

@ -1843,7 +1843,7 @@ void CL_ServersResponsePacket( netadr_t from, msg_t *msg ) {
int numservers;
byte* buffptr;
byte* buffend;
netadrtype_t family;
netadrtype_t family = NA_IP;
Com_Printf("CL_ServersResponsePacket\n");

View File

@ -3112,10 +3112,10 @@ const char *FS_ReferencedPakNames( void ) {
for ( search = fs_searchpaths ; search ; search = search->next ) {
// is the element a pak file?
if ( search->pack ) {
if (search->pack->referenced || Q_stricmpn(search->pack->pakGamename, BASEGAME, strlen(BASEGAME))) {
if (*info) {
Q_strcat(info, sizeof( info ), " " );
}
if (search->pack->referenced || Q_stricmpn(search->pack->pakGamename, BASEGAME, strlen(BASEGAME))) {
Q_strcat( info, sizeof( info ), search->pack->pakGamename );
Q_strcat( info, sizeof( info ), "/" );
Q_strcat( info, sizeof( info ), search->pack->pakBasename );

View File

@ -5939,7 +5939,6 @@ UI_StartServerRefresh
*/
static void UI_StartServerRefresh(qboolean full)
{
int i;
char *ptr;
qtime_t q;