change the formatting of cmdlist <args> a bit

This commit is contained in:
Bill Currie 2001-02-06 04:12:32 +00:00
parent c6e087015c
commit 86a7e3b749
1 changed files with 1 additions and 1 deletions

View File

@ -860,7 +860,7 @@ Cmd_CmdList_f (void)
show_description = 1;
for (cmd = cmd_functions, i = 0; cmd; cmd = cmd->next, i++) {
if (show_description) {
Con_Printf ("%-20s : %s\n", cmd->name, cmd->description);
Con_Printf ("%-20s :\n%s\n", cmd->name, cmd->description);
} else {
Con_Printf ("%s\n", cmd->name);
}