From 015c3ace6c26c36aaaa3e0b0638356db6793139a Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Mon, 2 Oct 2000 17:50:02 +0000 Subject: [PATCH] fix for 40 column output. forgot that 10*4=40 and \n after 40 chars doesn't do what was wanted. --- source/quakefs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/quakefs.c b/source/quakefs.c index 05ceeeb..f4f28ed 100644 --- a/source/quakefs.c +++ b/source/quakefs.c @@ -308,7 +308,7 @@ maplist_print(struct maplist *maplist) for (i=0; icount - 1; i++) { name = maplist->list[i]; end = strstr (name, ".bsp"); - Con_Printf ("%-9.*s%c", end - name, name, ((i + 1) % 4) ? ' ' : '\n'); + Con_Printf ("%-8.*s%c", end - name, name, ((i + 1) % 4) ? ' ' : '\n'); } name = maplist->list[i]; end = strstr (name, ".bsp");