mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-03-13 03:33:28 +00:00
fix for 40 column output. forgot that 10*4=40 and \n after 40 chars doesn't do
what was wanted.
This commit is contained in:
parent
a72953290b
commit
015c3ace6c
1 changed files with 1 additions and 1 deletions
|
@ -308,7 +308,7 @@ maplist_print(struct maplist *maplist)
|
|||
for (i=0; i<maplist->count - 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");
|
||||
|
|
Loading…
Reference in a new issue