diff options
-rw-r--r-- | common/fs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/fs.cpp b/common/fs.cpp index f7edf41711..bf6d1f5a85 100644 --- a/common/fs.cpp +++ b/common/fs.cpp @@ -63,7 +63,7 @@ bool FilesystemNode::exists() const { FilesystemNode FilesystemNode::getChild(const Common::String &n) const { // If this node is invalid or not a directory, return an invalid node - if (_realNode == 0 || !_realNode->isDirectory()) + if (_realNode == 0 || !_realNode->isDirectory()) return FilesystemNode(); AbstractFilesystemNode *node = _realNode->getChild(n); |