aboutsummaryrefslogtreecommitdiff
path: root/engines/cge/fileio.h
diff options
context:
space:
mode:
authorStrangerke2011-09-09 20:03:23 +0200
committerStrangerke2011-09-09 20:03:23 +0200
commit0784b7e0b4f0f19b4c5a34f7081fdbf8ce9f75d9 (patch)
tree59c56238c7325ba0b114977eb75f9dd278afe6f5 /engines/cge/fileio.h
parent4848683e56b1466a7dabbbecb7bb1bf7e4c857a7 (diff)
downloadscummvm-rg350-0784b7e0b4f0f19b4c5a34f7081fdbf8ce9f75d9.tar.gz
scummvm-rg350-0784b7e0b4f0f19b4c5a34f7081fdbf8ce9f75d9.tar.bz2
scummvm-rg350-0784b7e0b4f0f19b4c5a34f7081fdbf8ce9f75d9.zip
CGE: Remove Dat class
Diffstat (limited to 'engines/cge/fileio.h')
-rw-r--r--engines/cge/fileio.h10
1 files changed, 2 insertions, 8 deletions
diff --git a/engines/cge/fileio.h b/engines/cge/fileio.h
index 6465c8e8f8..65f0b953e7 100644
--- a/engines/cge/fileio.h
+++ b/engines/cge/fileio.h
@@ -63,10 +63,10 @@ struct Header {
class IoHand {
protected:
- Common::File *_file;
uint16 _seed;
Crypt *_crypt;
public:
+ Common::File *_file;
uint16 _error;
IoHand(const char *name, Crypt crypt);
@@ -132,12 +132,6 @@ public:
bool exist(const char *name);
};
-class Dat {
-public:
- Dat();
- CFile _file;
-};
-
class VFile : public IoBuf {
private:
long _begMark;
@@ -153,7 +147,7 @@ public:
long seek(long pos);
};
-extern Dat *_dat;
+extern CFile *_dat;
extern BtFile *_cat;
} // End of namespace CGE