aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
Diffstat (limited to 'engines')
-rw-r--r--engines/prince/archive.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/prince/archive.cpp b/engines/prince/archive.cpp
index bc5d5d3818..ae6a2b7546 100644
--- a/engines/prince/archive.cpp
+++ b/engines/prince/archive.cpp
@@ -41,7 +41,7 @@ static void decrypt(byte *buffer, uint32 size) {
while (size--) {
*buffer++ += key & 0xFF;
key ^= 0x2E84299A;
- key += 0x424C4148;
+ key += MKTAG('B', 'L', 'A', 'H');
key = ((key & 1) << 31) | (key >> 1);
}
}