aboutsummaryrefslogtreecommitdiff
path: root/engines/cge/fileio.h
diff options
context:
space:
mode:
authorStrangerke2014-03-11 07:52:46 +0100
committerStrangerke2014-03-11 07:52:46 +0100
commite9189b57b3133f603314799d663c0e96231477f8 (patch)
tree6175a242587befa8ff2a0c67345cf7691ff37d17 /engines/cge/fileio.h
parent2822df856d2ff4ca730a0a2a12fe9a120e495784 (diff)
downloadscummvm-rg350-e9189b57b3133f603314799d663c0e96231477f8.tar.gz
scummvm-rg350-e9189b57b3133f603314799d663c0e96231477f8.tar.bz2
scummvm-rg350-e9189b57b3133f603314799d663c0e96231477f8.zip
CGE: Get rid of a magic value in file seek
Diffstat (limited to 'engines/cge/fileio.h')
-rw-r--r--engines/cge/fileio.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/cge/fileio.h b/engines/cge/fileio.h
index 77404fb552..059d2c9a44 100644
--- a/engines/cge/fileio.h
+++ b/engines/cge/fileio.h
@@ -92,7 +92,7 @@ public:
ResourceManager();
~ResourceManager();
uint16 read(byte *buf, uint16 length);
- bool seek(int32 offs, int whence = 0);
+ bool seek(int32 offs, int whence = SEEK_SET);
BtKeypack *find(const char *key);
bool exist(const char *name);