Minor correctness: don't zero extend bpp bits.

This commit is contained in:
Unknown W. Brackets 2013-11-16 23:39:19 -08:00
parent 8f6315e375
commit 0bd7d7ad19

View File

@ -251,7 +251,8 @@ struct PGFFontInfo {
// Font style (used by font comparison functions).
PGFFontStyle fontStyle;
s32_le BPP; // Font's BPP.
u8 BPP; // Font's BPP.
u8 pad[3];
};
#pragma pack(pop)