add method to set the xor byte in the file class. Needed as the combined mac data files are only xor'd in the resource files, not the parts of the combined file

svn-id: r10825
This commit is contained in:
Jonathan Gray 2003-10-16 10:23:01 +00:00
parent bc072912b6
commit db716d5fb1

View File

@ -71,6 +71,7 @@ public:
void writeUint32LE(uint32 value);
void writeUint16BE(uint16 value);
void writeUint32BE(uint32 value);
void setEnc(byte value) { _encbyte = value; }
};
#endif