From c097e1a282a448af20a2e72d8cf180ec45302c7c Mon Sep 17 00:00:00 2001 From: Dan Olson Date: Fri, 31 Mar 2000 20:14:14 +0000 Subject: [PATCH] One last (hopefully) fix to "maplist" command. It now lists pak names correctly as it searches them. --- common/quakefs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/quakefs.c b/common/quakefs.c index 51ee24e..ef4779b 100644 --- a/common/quakefs.c +++ b/common/quakefs.c @@ -208,7 +208,7 @@ void COM_Maplist_f (void) if (search->pack) { int i; pack_t *pak = search->pack; - Con_Printf ("Looking in %s...\n",search->filename); + Con_Printf ("Looking in %s...\n",search->pack->filename); for (i=0 ; inumfiles ; i++) { char *name=pak->files[i].name; if (!fnmatch ("maps/*.bsp", name, FNM_PATHNAME)