diff options
| author | oy <Tom_Adams@web.de> | 2010-09-24 13:48:23 +0200 |
|---|---|---|
| committer | oy <Tom_Adams@web.de> | 2010-09-24 13:48:23 +0200 |
| commit | feb7e60bb2a1ca85af8ecad15434f74caf2c8247 (patch) | |
| tree | 942cac209474853574e4c80ddd68c362717f098f /src/base | |
| parent | 7e0b37e06c71dc96d68f3352ecd2c799caaaf8ec (diff) | |
| download | zcatch-feb7e60bb2a1ca85af8ecad15434f74caf2c8247.tar.gz zcatch-feb7e60bb2a1ca85af8ecad15434f74caf2c8247.zip | |
fixed map listing
Diffstat (limited to 'src/base')
| -rw-r--r-- | src/base/system.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/base/system.c b/src/base/system.c index 9788e625..6c74fb23 100644 --- a/src/base/system.c +++ b/src/base/system.c @@ -879,8 +879,7 @@ int fs_listdir(const char *dir, FS_LISTDIR_CALLBACK cb, int type, void *user) /* add all the entries */ do { - if(finddata.cFileName[0] != '.') - cb(finddata.cFileName, 0, type, user); + cb(finddata.cFileName, 0, type, user); } while (FindNextFileA(handle, &finddata)); FindClose(handle); |