aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/Base/file/BFile.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/wintermute/Base/file/BFile.h')
-rw-r--r--engines/wintermute/Base/file/BFile.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/wintermute/Base/file/BFile.h b/engines/wintermute/Base/file/BFile.h
index 1ff3c109f8..cbdd0b1ff1 100644
--- a/engines/wintermute/Base/file/BFile.h
+++ b/engines/wintermute/Base/file/BFile.h
@@ -51,10 +51,10 @@ public:
virtual uint32 getPos() {
return _pos;
};
- virtual ERRORCODE seek(uint32 pos, int whence = SEEK_SET) = 0;
- virtual ERRORCODE read(void *buffer, uint32 size) = 0;
- virtual ERRORCODE close() = 0;
- virtual ERRORCODE open(const Common::String &filename) = 0;
+ virtual bool seek(uint32 pos, int whence = SEEK_SET) = 0;
+ virtual bool read(void *buffer, uint32 size) = 0;
+ virtual bool close() = 0;
+ virtual bool open(const Common::String &filename) = 0;
virtual bool isEOF();
CBFile(CBGame *inGame);
virtual ~CBFile();