(DwqFormat): PACKBMP with mask has alpha channel.

This commit is contained in:
morkt 2016-06-04 19:58:36 +04:00
parent 37a1a4311c
commit 3bf28986b8

View File

@ -142,7 +142,7 @@ namespace GameRes.Formats.BlackCyc
BaseType = Encoding.ASCII.GetString (header.Bytes, 0, 0x10).TrimEnd(),
PackedSize = packed_size,
PackType = header.PackType,
HasAlpha = header.AType || 7 == header.PackType,
HasAlpha = header.AType || 7 == header.PackType || 3 == header.PackType,
};
}