diff options
author | Marcus Comstedt | 2006-05-02 22:27:24 +0000 |
---|---|---|
committer | Marcus Comstedt | 2006-05-02 22:27:24 +0000 |
commit | 5468059d44aa3a6ea00a9b54fad16bc834ab48ad (patch) | |
tree | 302a36064340ed8b1bb6c91ab00e95eac7314f4e /backends/fs/posix | |
parent | aa7513d0d5867115274980d1f2b7f2d988734d81 (diff) | |
download | scummvm-rg350-5468059d44aa3a6ea00a9b54fad16bc834ab48ad.tar.gz scummvm-rg350-5468059d44aa3a6ea00a9b54fad16bc834ab48ad.tar.bz2 scummvm-rg350-5468059d44aa3a6ea00a9b54fad16bc834ab48ad.zip |
Removed compilation error.
svn-id: r22282
Diffstat (limited to 'backends/fs/posix')
-rw-r--r-- | backends/fs/posix/posix-fs.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/backends/fs/posix/posix-fs.cpp b/backends/fs/posix/posix-fs.cpp index e4b6b9ffa1..9ad0d57967 100644 --- a/backends/fs/posix/posix-fs.cpp +++ b/backends/fs/posix/posix-fs.cpp @@ -114,12 +114,12 @@ POSIXFilesystemNode::POSIXFilesystemNode(const String &p, bool verify) { if (verify) { #ifdef __DC__ - FIXME; /* - FIXME: Is there really no way to at least verify the path is valid? - Or is it too slow, or what? Please clarify with a comment here. - (Of course we could just fopen here, but that wouldn't be able to deal - with directories... + FIXME: Why should I need to add a lot of code + just to figure out if a path exists / is a directory here? + We should know what we want it to be, and when open / listDir + is called it will become apparent if it isn't. Just + checking for the sake of checking seems bogus to me. */ #else struct stat st; |