aboutsummaryrefslogtreecommitdiff
path: root/backends/fs/fs.h
diff options
context:
space:
mode:
authorMax Horn2004-12-10 00:11:52 +0000
committerMax Horn2004-12-10 00:11:52 +0000
commit3825614f6734a4b6e92718f4eaa007ccb2a415d5 (patch)
treed88df841ebd11559f3507c13a52bb50166009194 /backends/fs/fs.h
parent3bd97accd48ad0d9b0180d69be450b5e14eea2dd (diff)
downloadscummvm-rg350-3825614f6734a4b6e92718f4eaa007ccb2a415d5.tar.gz
scummvm-rg350-3825614f6734a4b6e92718f4eaa007ccb2a415d5.tar.bz2
scummvm-rg350-3825614f6734a4b6e92718f4eaa007ccb2a415d5.zip
Removed outdated (and wrong) comment; all this stuff will be rewritten eventually anyway, but at least we shouldn't spread false information
svn-id: r16006
Diffstat (limited to 'backends/fs/fs.h')
-rw-r--r--backends/fs/fs.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/backends/fs/fs.h b/backends/fs/fs.h
index 438e8d6583..493e7d0c37 100644
--- a/backends/fs/fs.h
+++ b/backends/fs/fs.h
@@ -30,11 +30,7 @@
* paths (and it's left to them whether / or \ or : is the path separator :-);
* but it is also possible to use inodes or vrefs (MacOS 9) or anything else.
*
- * NOTE 1: currently ONLY the directory listing mode is used; that is, we only are
- * interested in listing directories. Thus, for now implementation only have to
- * list directories.
- *
- * NOTE 2: Backends still have to provide a way to extract a path from a FSIntern
+ * NOTE: Backends still have to provide a way to extract a path from a FSIntern
*
* You may ask now: "isn't this cheating? Why do we go through all this when we use
* a path in the end anyway?!?".