diff options
| author | Travis Howell | 2006-04-27 23:14:54 +0000 |
|---|---|---|
| committer | Travis Howell | 2006-04-27 23:14:54 +0000 |
| commit | e163be131c191f3e04ae120690b0d0926deeb25f (patch) | |
| tree | f573e9d2d06a12088d3b40b93155ca1f20356038 /common | |
| parent | 6330e6585225c40b63818eb3ee608b144704493f (diff) | |
| download | scummvm-rg350-e163be131c191f3e04ae120690b0d0926deeb25f.tar.gz scummvm-rg350-e163be131c191f3e04ae120690b0d0926deeb25f.tar.bz2 scummvm-rg350-e163be131c191f3e04ae120690b0d0926deeb25f.zip | |
Revert kListAllNoRoot addition to listdir(), the uninitialized _isPseudoRoot in windows filesys backend was real cause of problem.
svn-id: r22194
Diffstat (limited to 'common')
| -rw-r--r-- | common/file.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/file.cpp b/common/file.cpp index f7632b0b75..d3f6c94a81 100644 --- a/common/file.cpp +++ b/common/file.cpp @@ -133,7 +133,7 @@ void File::addDefaultDirectoryRecursive(const String &directory, int level) { if (!_filesMap) _filesMap = new FilesMap; - const FSList fslist(dir.listDir(FilesystemNode::kListAllNoRoot)); + const FSList fslist(dir.listDir(FilesystemNode::kListAll)); for (FSList::const_iterator file = fslist.begin(); file != fslist.end(); ++file) { if (file->isDirectory()) { |
