aboutsummaryrefslogtreecommitdiff
path: root/common/file.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/file.h')
-rw-r--r--common/file.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/file.h b/common/file.h
index ff6e18f183..6bf281ff92 100644
--- a/common/file.h
+++ b/common/file.h
@@ -51,8 +51,8 @@ public:
bool open(const char *filename, const Common::String &directory) { return open(filename, directory.c_str()); }
bool open(const char *filename, const char *directory = NULL, int mode = kFileReadMode, byte encbyte = 0);
void close();
- bool isOpen();
- bool ioFailed();
+ bool isOpen() const;
+ bool ioFailed() const;
void clearIOFailed();
bool eof();
uint32 pos();