[Scummvm-cvs-logs] SF.net SVN: scummvm: [28957] scummvm/trunk/common/file.cpp

drmccoy at users.sourceforge.net drmccoy at users.sourceforge.net
Wed Sep 19 01:37:31 CEST 2007


Revision: 28957
          http://scummvm.svn.sourceforge.net/scummvm/?rev=28957&view=rev
Author:   drmccoy
Date:     2007-09-18 16:37:31 -0700 (Tue, 18 Sep 2007)

Log Message:
-----------
More comment fixing :P

Modified Paths:
--------------
    scummvm/trunk/common/file.cpp

Modified: scummvm/trunk/common/file.cpp
===================================================================
--- scummvm/trunk/common/file.cpp	2007-09-18 23:19:51 UTC (rev 28956)
+++ scummvm/trunk/common/file.cpp	2007-09-18 23:37:31 UTC (rev 28957)
@@ -440,14 +440,14 @@
 }
 
 bool File::exists(const String &filename) {
-	// First try to find the file it via a FilesystemNode (in case an absolute
+	// First try to find the file via a FilesystemNode (in case an absolute
 	// path was passed). But we only use this to filter out directories.
 	FilesystemNode file(filename);
 	
-	// FIXME: since (as stated in the comment above) FilesystemNode creation
-	// just works for absolute paths, and we use this to tell if a file
-	// exists in any of the setup paths so we ca not use:
-	//return (!file.isDirectory() && file.exists());
+	// FIXME: Since (as stated in the comment above) the FilesystemNode
+	// creation just works for absolute paths and we use this to tell if
+	// a file exists in any of the setup paths, we cannot use
+	// return (!file.isDirectory() && file.exists());
 	// 
 	// I.e.:
 	// FilesystemNode("foofile"); would fail for most (even all?)


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list