aboutsummaryrefslogtreecommitdiff
path: root/engines/cge/wav.h
diff options
context:
space:
mode:
authorStrangerke2011-07-31 00:52:35 +0200
committerStrangerke2011-07-31 00:52:35 +0200
commit55df4d063596c774969a8d3537c999a95b7dfcc0 (patch)
treed1f0f24affff10e89b8a9d4d8a55d31f20d73171 /engines/cge/wav.h
parentb53ffa8f2c31d27ac5a7b3fd48143102be6ff4ff (diff)
downloadscummvm-rg350-55df4d063596c774969a8d3537c999a95b7dfcc0.tar.gz
scummvm-rg350-55df4d063596c774969a8d3537c999a95b7dfcc0.tar.bz2
scummvm-rg350-55df4d063596c774969a8d3537c999a95b7dfcc0.zip
CGE: Rename some class members, various clean up
Diffstat (limited to 'engines/cge/wav.h')
-rw-r--r--engines/cge/wav.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/cge/wav.h b/engines/cge/wav.h
index 739e102959..bd9fc96b0a 100644
--- a/engines/cge/wav.h
+++ b/engines/cge/wav.h
@@ -41,20 +41,20 @@ typedef char FourCC[4]; // Four-character code
class ChunkId { // Chunk type identifier
union {
- FourCC _tx;
+ FourCC _text;
uint32 _id;
};
protected:
static XFile *ckFile;
public:
- ChunkId(FourCC t) {
- memcpy(_tx, t, sizeof(_tx));
+ ChunkId(FourCC text) {
+ memcpy(_text, text, sizeof(_text));
}
ChunkId(uint32 d) {
_id = d;
}
ChunkId(XFile *xf) {
- (ckFile = xf)->read(_tx, sizeof(_tx));
+ (ckFile = xf)->read(_text, sizeof(_text));
}
bool operator !=(ChunkId &X) {
return _id != X._id;
@@ -116,7 +116,7 @@ public:
class DataCk : public CkHea {
- bool _e;
+ bool _ef;
uint8 *_buf;
public:
DataCk(CkHea &hea);