aboutsummaryrefslogtreecommitdiff
path: root/backends/fs/fs.h
diff options
context:
space:
mode:
authorMax Horn2004-05-06 09:20:21 +0000
committerMax Horn2004-05-06 09:20:21 +0000
commit88fdb5a6274c8e4a832daaf7de00ba275e7d895e (patch)
tree179f9323e4a28d89e266a6434efbf6702bb3cc49 /backends/fs/fs.h
parentbd19811d19023f172152e4ef59b49e9358f9a5d0 (diff)
downloadscummvm-rg350-88fdb5a6274c8e4a832daaf7de00ba275e7d895e.tar.gz
scummvm-rg350-88fdb5a6274c8e4a832daaf7de00ba275e7d895e.tar.bz2
scummvm-rg350-88fdb5a6274c8e4a832daaf7de00ba275e7d895e.zip
Removed default value for keycolor in the OSystem implementations
svn-id: r13796
Diffstat (limited to 'backends/fs/fs.h')
-rw-r--r--backends/fs/fs.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/backends/fs/fs.h b/backends/fs/fs.h
index ba9cb6dd4c..15bd05c78f 100644
--- a/backends/fs/fs.h
+++ b/backends/fs/fs.h
@@ -44,7 +44,7 @@
*
* Secondly, with this abstraction layer, we still avoid a lot of complications based on
* differences in FS roots, different path separators, or even systems with no real
- * paths (Mac OS 9, which doesn't even have the notion of a "current director").
+ * paths (MacOS 9 doesn't even have the notion of a "current directory").
* And if we ever want to support devices with no FS in the classical sense (Palm...),
* we can build upon this.
*/
@@ -180,13 +180,6 @@ public:
_size++;
}
- const FilesystemNode& operator [](int idx) const {
- assert(idx >= 0 && idx < _size);
- return *_data[idx];
- }
-
- int size() const { return _size; }
-
const_iterator begin() const {
return const_iterator(_data);
}