Print the vpath name when dumping the paths.

This commit is contained in:
Bill Currie 2013-01-20 14:35:19 +09:00
parent 098821e35d
commit 8bc2f7f6df

View file

@ -768,6 +768,7 @@ qfs_path_f (void)
Sys_Printf ("Current search path:\n");
for (vp = qfs_vpaths; vp; vp = vp->next) {
Sys_Printf ("%s\n", vp->name);
for (sp = vp->user; sp; sp = sp->next) {
qfs_path_print (sp);
}