From 14d055dbf81a59857883a6cac578847e44557870 Mon Sep 17 00:00:00 2001 From: tma Date: Sat, 12 Apr 2008 18:58:06 +0000 Subject: * Fix some recently introduced warnings * Fix referenced pk3 list including excessive number of spaces git-svn-id: svn://svn.icculus.org/quake3/trunk@1315 edf5b092-35ff-0310-97b2-ce42778d08ea --- code/qcommon/files.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'code/qcommon') 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 ); -- cgit v1.2.3