freetype: correct typo in previous fix (#509)

Co-authored-by: Scott Johnson <scott.johnson@furniturerow.com>
This commit is contained in:
NewbLuck 2022-09-02 10:44:46 -06:00 committed by GitHub
parent 21a0edca03
commit b7ea4aeb89
Failed to generate hash of commit

View file

@ -127,7 +127,7 @@ pub const FaceFlags = packed struct {
svg: bool = false,
sbix: bool = false,
sbix_overlay: bool = false,
_padding: if (@sizeof(c_long) == 4) u13 else u45 = 0,
_padding: if (@sizeOf(c_long) == 4) u13 else u45 = 0,
};
pub const FSType = packed struct {
@ -144,7 +144,7 @@ pub const FSType = packed struct {
pub const StyleFlags = packed struct {
italic: bool = false,
bold: bool = false,
_padding: if (@sizeof(c_long) == 4) u30 else u62 = 0,
_padding: if (@sizeOf(c_long) == 4) u30 else u62 = 0,
};
pub const OpenFlags = packed struct {