aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorMax Horn2005-05-05 11:53:43 +0000
committerMax Horn2005-05-05 11:53:43 +0000
commit54bf9bf1ad941b57c5ffd2dc0f2cf1795598b3b9 (patch)
treed88be546a4f935605ecb82e2d3788883e7af75c0 /common
parentf1d59b41945ba190935dcd3082e76f964daba0cb (diff)
downloadscummvm-rg350-54bf9bf1ad941b57c5ffd2dc0f2cf1795598b3b9.tar.gz
scummvm-rg350-54bf9bf1ad941b57c5ffd2dc0f2cf1795598b3b9.tar.bz2
scummvm-rg350-54bf9bf1ad941b57c5ffd2dc0f2cf1795598b3b9.zip
Turned File::exists into a static method (as it should have been from the start, silly copy&paste mistake
svn-id: r17915
Diffstat (limited to 'common')
-rw-r--r--common/file.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/file.h b/common/file.h
index cda98bac10..48edc1ef17 100644
--- a/common/file.h
+++ b/common/file.h
@@ -60,7 +60,7 @@ public:
void decRef();
virtual bool open(const char *filename, AccessMode mode = kFileReadMode, const char *directory = NULL);
- virtual bool exists(const char *filename, const char *directory = NULL);
+ static bool exists(const char *filename, const char *directory = NULL);
virtual void close();
bool isOpen() const;