From db716d5fb13f1524d9aa437dc0d7498e9e7aa083 Mon Sep 17 00:00:00 2001 From: Jonathan Gray Date: Thu, 16 Oct 2003 10:23:01 +0000 Subject: [PATCH] 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 --- common/file.h | 1 + 1 file changed, 1 insertion(+) diff --git a/common/file.h b/common/file.h index b043608d226..ff6e18f1834 100644 --- a/common/file.h +++ b/common/file.h @@ -71,6 +71,7 @@ public: void writeUint32LE(uint32 value); void writeUint16BE(uint16 value); void writeUint32BE(uint32 value); + void setEnc(byte value) { _encbyte = value; } }; #endif