diff options
Diffstat (limited to 'backends/fs/posix')
-rw-r--r-- | backends/fs/posix/posix-fs.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/fs/posix/posix-fs.cpp b/backends/fs/posix/posix-fs.cpp index 6681a7fdf4..43cf964d3d 100644 --- a/backends/fs/posix/posix-fs.cpp +++ b/backends/fs/posix/posix-fs.cpp @@ -74,11 +74,11 @@ static const char *lastPathComponent(const Common::String &str) { return cur + 1; } -AbstractFilesystemNode *FilesystemNode::getRoot() { +AbstractFilesystemNode *AbstractFilesystemNode::getRoot() { return new POSIXFilesystemNode(); } -AbstractFilesystemNode *FilesystemNode::getNodeForPath(const String &path) { +AbstractFilesystemNode *AbstractFilesystemNode::getNodeForPath(const String &path) { return new POSIXFilesystemNode(path, true); } |