diff options
author | Sven Hesse | 2007-09-18 23:37:31 +0000 |
---|---|---|
committer | Sven Hesse | 2007-09-18 23:37:31 +0000 |
commit | d455146e993eefd9e43baa2cf3eb922089e24e44 (patch) | |
tree | 587b0f84100d92eb7d9c13cd5f7bda04ef633300 /common | |
parent | 5831459859818a3d434b0f2ceabc9e3be616c587 (diff) | |
download | scummvm-rg350-d455146e993eefd9e43baa2cf3eb922089e24e44.tar.gz scummvm-rg350-d455146e993eefd9e43baa2cf3eb922089e24e44.tar.bz2 scummvm-rg350-d455146e993eefd9e43baa2cf3eb922089e24e44.zip |
More comment fixing :P
svn-id: r28957
Diffstat (limited to 'common')
-rw-r--r-- | common/file.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/common/file.cpp b/common/file.cpp index 183d50ed25..cdf8d5e13e 100644 --- a/common/file.cpp +++ b/common/file.cpp @@ -440,14 +440,14 @@ bool File::remove(const FilesystemNode &node){ } 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?) |