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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/wintermute/Base/file/BFile.h b/engines/wintermute/Base/file/BFile.h
index 0a7214f6ba..1ff3c109f8 100644
--- a/engines/wintermute/Base/file/BFile.h
+++ b/engines/wintermute/Base/file/BFile.h
@@ -51,7 +51,7 @@ public:
virtual uint32 getPos() {
return _pos;
};
- virtual ERRORCODE seek(uint32 pos, TSeek origin = SEEK_TO_BEGIN) = 0;
+ 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;