aboutsummaryrefslogtreecommitdiff
path: root/backends/fs/posix
diff options
context:
space:
mode:
authorMax Horn2005-02-06 18:37:23 +0000
committerMax Horn2005-02-06 18:37:23 +0000
commita1b058897d0fcfe1ae7a372ed6d779fdacaeeaa3 (patch)
treeb81024fd3401dc6b3c155c57cd1c3269686d8854 /backends/fs/posix
parent028cc42f2b8e453be5d6f0dd2a65556dbf3d6911 (diff)
downloadscummvm-rg350-a1b058897d0fcfe1ae7a372ed6d779fdacaeeaa3.tar.gz
scummvm-rg350-a1b058897d0fcfe1ae7a372ed6d779fdacaeeaa3.tar.bz2
scummvm-rg350-a1b058897d0fcfe1ae7a372ed6d779fdacaeeaa3.zip
Remove the OSX-restriction on FilesystemNode::getNodeForPath() for now (I don't like it, but until a proper solution is in place, it seems to be the best thing to do)
svn-id: r16743
Diffstat (limited to 'backends/fs/posix')
-rw-r--r--backends/fs/posix/posix-fs.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/backends/fs/posix/posix-fs.cpp b/backends/fs/posix/posix-fs.cpp
index ba28fd4a41..8673ea28d0 100644
--- a/backends/fs/posix/posix-fs.cpp
+++ b/backends/fs/posix/posix-fs.cpp
@@ -82,11 +82,9 @@ AbstractFilesystemNode *FilesystemNode::getRoot() {
return new POSIXFilesystemNode();
}
-#ifdef MACOSX
AbstractFilesystemNode *FilesystemNode::getNodeForPath(const String &path) {
return new POSIXFilesystemNode(path);
}
-#endif
POSIXFilesystemNode::POSIXFilesystemNode() {
#ifndef __DC__