Tweeked a warning message to be more helpful (and less concerning to the user).

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1554 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2005-11-03 23:42:00 +00:00
parent 118d71793d
commit 30f51f6553

View file

@ -92,7 +92,7 @@ int Sys_EnumerateFiles (char *gpath, char *match, int (*func)(char *, int, void
dir = opendir(gpath);
if (!dir)
{
Con_Printf("Failed to open dir\n");
Con_Printf("Failed to open dir %s\n", gpath);
return true;
}
do
@ -367,7 +367,7 @@ int Sys_EnumerateFiles (char *gpath, char *match, int (*func)(char *, int, void
dir = opendir(truepath);
if (!dir)
{
Con_Printf("Failed to open dir\n");
Con_Printf("Failed to open dir %s\n", truepath);
return true;
}
do