diff options
author | Strangerke | 2014-03-11 07:52:46 +0100 |
---|---|---|
committer | Strangerke | 2014-03-11 07:52:46 +0100 |
commit | e9189b57b3133f603314799d663c0e96231477f8 (patch) | |
tree | 6175a242587befa8ff2a0c67345cf7691ff37d17 /engines/cge | |
parent | 2822df856d2ff4ca730a0a2a12fe9a120e495784 (diff) | |
download | scummvm-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')
-rw-r--r-- | engines/cge/fileio.h | 2 |
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); |