aboutsummaryrefslogtreecommitdiffstats
path: root/code/qcommon
diff options
context:
space:
mode:
authortma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea>2008-04-12 18:58:06 +0000
committertma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea>2008-04-12 18:58:06 +0000
commit14d055dbf81a59857883a6cac578847e44557870 (patch)
treee49e8964f0c8d5d8208db2e6c9d83923871c1a80 /code/qcommon
parentfee5bebf147f40dd27b3f10a1b1c5610933d1fc5 (diff)
downloadioquake3-aero-14d055dbf81a59857883a6cac578847e44557870.tar.gz
ioquake3-aero-14d055dbf81a59857883a6cac578847e44557870.zip
* 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
Diffstat (limited to 'code/qcommon')
-rw-r--r--code/qcommon/files.c6
1 files changed, 3 insertions, 3 deletions
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 );