diff options
Diffstat (limited to 'code')
| -rw-r--r-- | code/client/cl_main.c | 2 | ||||
| -rw-r--r-- | code/qcommon/files.c | 6 | ||||
| -rw-r--r-- | code/ui/ui_main.c | 1 | 
3 files changed, 4 insertions, 5 deletions
diff --git a/code/client/cl_main.c b/code/client/cl_main.c index 3c8625e..582fd19 100644 --- a/code/client/cl_main.c +++ b/code/client/cl_main.c @@ -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"); diff --git a/code/qcommon/files.c b/code/qcommon/files.c index 07ecfac..dcdb7bc 100644 --- a/code/qcommon/files.c +++ b/code/qcommon/files.c @@ -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 (*info) { -				Q_strcat(info, sizeof( info ), " " ); -			}  			if (search->pack->referenced || Q_stricmpn(search->pack->pakGamename, BASEGAME, strlen(BASEGAME))) { +				if (*info) { +					Q_strcat(info, sizeof( info ), " " ); +				}  				Q_strcat( info, sizeof( info ), search->pack->pakGamename );  				Q_strcat( info, sizeof( info ), "/" );  				Q_strcat( info, sizeof( info ), search->pack->pakBasename ); diff --git a/code/ui/ui_main.c b/code/ui/ui_main.c index c06ecdd..2fccf16 100644 --- a/code/ui/ui_main.c +++ b/code/ui/ui_main.c @@ -5939,7 +5939,6 @@ UI_StartServerRefresh  */  static void UI_StartServerRefresh(qboolean full)  { -	int		i;  	char	*ptr;  	qtime_t q;  | 
