aboutsummaryrefslogtreecommitdiff
path: root/engines/cruise
diff options
context:
space:
mode:
authorPaul Gilbert2009-05-24 04:29:44 +0000
committerPaul Gilbert2009-05-24 04:29:44 +0000
commit57e104c62525a30ff3f44d1b91d1da5bae772047 (patch)
tree60c267f68602bbc5f1bd5a86764510e531a8ce46 /engines/cruise
parentc0302661ed3baac83c67002a6af072eabd08eb3a (diff)
downloadscummvm-rg350-57e104c62525a30ff3f44d1b91d1da5bae772047.tar.gz
scummvm-rg350-57e104c62525a30ff3f44d1b91d1da5bae772047.tar.bz2
scummvm-rg350-57e104c62525a30ff3f44d1b91d1da5bae772047.zip
Fixed the display glitch associated with the animated handle in the engine room
svn-id: r40851
Diffstat (limited to 'engines/cruise')
-rw-r--r--engines/cruise/dataLoader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/cruise/dataLoader.cpp b/engines/cruise/dataLoader.cpp
index b393d55106..2e62fb8657 100644
--- a/engines/cruise/dataLoader.cpp
+++ b/engines/cruise/dataLoader.cpp
@@ -420,7 +420,7 @@ int loadSetEntry(const char *name, uint8 *ptr, int currentEntryIdx, int currentD
localBuffer.width = s4.readUint16BE();
localBuffer.height = s4.readUint16BE();
localBuffer.type = s4.readUint16BE();
- localBuffer.transparency = s4.readUint16BE();
+ localBuffer.transparency = s4.readUint16BE() & 0x1F;
localBuffer.hotspotY = s4.readUint16BE();
localBuffer.hotspotX = s4.readUint16BE();