From 315bbd348d490d3edf6f5dcfb58ffcc9ecde83b3 Mon Sep 17 00:00:00 2001 From: eriktorbjorn Date: Mon, 27 Jun 2011 19:25:24 +0200 Subject: CGE: Fix some GCC compile errors and warnings. --- engines/cge/general.cpp | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) (limited to 'engines/cge/general.cpp') diff --git a/engines/cge/general.cpp b/engines/cge/general.cpp index b07ddbc362..1bf4bcd982 100644 --- a/engines/cge/general.cpp +++ b/engines/cge/general.cpp @@ -215,6 +215,7 @@ char *dwtom(uint32 val, char *str, int radix, int len) { IOHAND::IOHAND(IOMODE mode, CRYPT *crpt) : XFILE(mode), Crypt(crpt), Seed(SEED) { + _file = new Common::File(); } IOHAND::IOHAND(const char *name, IOMODE mode, CRYPT *crpt) @@ -222,18 +223,20 @@ IOHAND::IOHAND(const char *name, IOMODE mode, CRYPT *crpt) // TODO: Check if WRI and/or UPD modes are needed, and map to a save file assert(mode == REA); - _file.open(name); + _file = new Common::File(); + _file->open(name); } IOHAND::~IOHAND(void) { - _file.close(); + _file->close(); + delete _file; } uint16 IOHAND::Read(void *buf, uint16 len) { - if (Mode == WRI || !_file.isOpen()) + if (Mode == WRI || !_file->isOpen()) return 0; - uint16 bytesRead = _file.read(buf, len); + uint16 bytesRead = _file->read(buf, len); if (Crypt) Seed = Crypt(buf, len, Seed); return bytesRead; } @@ -255,16 +258,16 @@ uint16 IOHAND::Write(void *buf, uint16 len) { } long IOHAND::Mark(void) { - return _file.pos(); + return _file->pos(); } long IOHAND::Seek(long pos) { - _file.seek(pos, SEEK_SET); - return _file.pos(); + _file->seek(pos, SEEK_SET); + return _file->pos(); } long IOHAND::Size(void) { - return _file.size(); + return _file->size(); } bool IOHAND::Exist(const char *name) { -- cgit v1.2.3