mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-23 04:11:53 +00:00
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:
parent
118d71793d
commit
30f51f6553
1 changed files with 18 additions and 18 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue