diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2020-09-01 14:25:21 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-01 14:25:21 -0400 |
commit | 7c8bc0fbe3606f9dac1f84a9f3a25879cb984782 (patch) | |
tree | ba6d8050355cbe28e70f525b62256c0f776ea1d8 /gflib/text.h | |
parent | ff9204a5ff0789ee696ea1fb9273577df01b833c (diff) | |
parent | 5504ceada36bfdf840552e9238c81f11ed7c3581 (diff) |
Merge pull request #1149 from PokeCodec/datatypes
gflib documenting
Diffstat (limited to 'gflib/text.h')
-rw-r--r-- | gflib/text.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gflib/text.h b/gflib/text.h index 0829d748f..b76897757 100644 --- a/gflib/text.h +++ b/gflib/text.h @@ -282,7 +282,7 @@ enum FONTATTR_MAX_LETTER_HEIGHT, FONTATTR_LETTER_SPACING, FONTATTR_LINE_SPACING, - FONTATTR_UNKNOWN, // dunno what this is yet + FONTATTR_STYLE, FONTATTR_COLOR_FOREGROUND, FONTATTR_COLOR_BACKGROUND, FONTATTR_COLOR_SHADOW @@ -310,7 +310,7 @@ struct TextPrinterTemplate u8 currentY; u8 letterSpacing; u8 lineSpacing; - u8 unk:4; // 0xC + u8 style:4; // 0xC u8 fgColor:4; u8 bgColor:4; u8 shadowColor:4; @@ -339,7 +339,7 @@ struct FontInfo u8 maxLetterHeight; u8 letterSpacing; u8 lineSpacing; - u8 unk:4; + u8 style:4; //unused u8 fgColor:4; u8 bgColor:4; u8 shadowColor:4; |