From 1e8a2e19b388164da10ece7b63648bfc3d66f537 Mon Sep 17 00:00:00 2001 From: rubidium Date: Tue, 6 Mar 2007 22:37:04 +0000 Subject: (svn r9043) -Fix [FS#652]: the personal (.openttd) directories were hidden in the load/save directory listings (stepancheg). --- src/unix.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/unix.cpp') diff --git a/src/unix.cpp b/src/unix.cpp index 68b96ee39..d4b3899ba 100644 --- a/src/unix.cpp +++ b/src/unix.cpp @@ -92,9 +92,12 @@ bool FiosIsValidFile(const char *path, const struct dirent *ent, struct stat *sb #endif snprintf(filename, lengthof(filename), "%s" PATHSEP "%s", path, ent->d_name); - if (stat(filename, sb) != 0) return false; + return stat(filename, sb) == 0; +} - return (ent->d_name[0] != '.'); // hidden file +bool FiosIsHiddenFile(const struct dirent *ent) +{ + return ent->d_name[0] == '.'; } #if defined(__BEOS__) || defined(__linux__) -- cgit v1.2.3-54-g00ecf