[Scummvm-cvs-logs] CVS: scummvm/backends/fs fs.h,1.18,1.19

Max Horn fingolfin at users.sourceforge.net
Thu May 6 02:21:06 CEST 2004


Update of /cvsroot/scummvm/scummvm/backends/fs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10955/fs

Modified Files:
	fs.h 
Log Message:
Removed default value for keycolor in the OSystem implementations

Index: fs.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/backends/fs/fs.h,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- fs.h	9 Apr 2004 15:10:22 -0000	1.18
+++ fs.h	6 May 2004 09:20:19 -0000	1.19
@@ -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 @@
 		_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);
 	}





More information about the Scummvm-git-logs mailing list