From 0bd7d7ad196c87be8aa4962c0052d23f0702644b Mon Sep 17 00:00:00 2001 From: "Unknown W. Brackets" Date: Sat, 16 Nov 2013 23:39:19 -0800 Subject: [PATCH] Minor correctness: don't zero extend bpp bits. --- Core/Font/PGF.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Core/Font/PGF.h b/Core/Font/PGF.h index bc5b429aac..a0f4f6954c 100644 --- a/Core/Font/PGF.h +++ b/Core/Font/PGF.h @@ -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)