aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTravis Howell2006-04-27 23:16:45 +0000
committerTravis Howell2006-04-27 23:16:45 +0000
commitc1572b2dbd5950774415a7b4db30d7473deeb552 (patch)
tree7a5c457751f69ade39a5b61cc673289a10b5dec2
parente163be131c191f3e04ae120690b0d0926deeb25f (diff)
downloadscummvm-rg350-c1572b2dbd5950774415a7b4db30d7473deeb552.tar.gz
scummvm-rg350-c1572b2dbd5950774415a7b4db30d7473deeb552.tar.bz2
scummvm-rg350-c1572b2dbd5950774415a7b4db30d7473deeb552.zip
_isPseudoRoot should be always false, in WindowsFilesystemNode(const String &path)
svn-id: r22195
-rw-r--r--backends/fs/windows/windows-fs.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/backends/fs/windows/windows-fs.cpp b/backends/fs/windows/windows-fs.cpp
index f776ffc8fe..d179ad0708 100644
--- a/backends/fs/windows/windows-fs.cpp
+++ b/backends/fs/windows/windows-fs.cpp
@@ -158,9 +158,6 @@ WindowsFilesystemNode::WindowsFilesystemNode(const String &p) {
_isValid = true;
_isDirectory = ((fileAttribs & FILE_ATTRIBUTE_DIRECTORY) != 0);
}
- // FIXME: Is the following correct? Should we maybe check for path being
- // empty and set it to true in this case?
- // In any case, not setting _isPseudoRoot at all certainly is a bug.
_isPseudoRoot = false;
}