summaryrefslogtreecommitdiff
path: root/gflib/text.h
diff options
context:
space:
mode:
authorGriffinR <griffin.g.richards@gmail.com>2021-03-29 12:32:26 -0400
committerGitHub <noreply@github.com>2021-03-29 12:32:26 -0400
commit731a4420353869e3d7e3b4a6e375a2234ee9169f (patch)
tree7213ceab81cd2edf2ac06df963599c16671a4d3c /gflib/text.h
parent5cb8ec424764845b1cb38871586346a885601b0f (diff)
parent6cceb05cb75f368c924c19fd456c2e09e71426a0 (diff)
Merge pull request #1389 from huderlem/text_doc
Document some text-related things
Diffstat (limited to 'gflib/text.h')
-rw-r--r--gflib/text.h12
1 files changed, 5 insertions, 7 deletions
diff --git a/gflib/text.h b/gflib/text.h
index 723a2fc0e..3e9b4f2ae 100644
--- a/gflib/text.h
+++ b/gflib/text.h
@@ -360,20 +360,18 @@ typedef struct {
bool8 forceMidTextSpeed:1;
} TextFlags;
-struct Struct_03002F90
+struct TextGlyph
{
- u32 unk0[8];
- u32 unk20[8];
- u32 unk40[8];
- u32 unk60[8];
+ u32 gfxBufferTop[16];
+ u32 gfxBufferBottom[16];
u8 width;
u8 height;
};
extern TextFlags gTextFlags;
-extern u8 gUnknown_03002F84;
-extern struct Struct_03002F90 gUnknown_03002F90;
+extern u8 gDisableTextPrinters;
+extern struct TextGlyph gCurGlyph;
void SetFontsPointer(const struct FontInfo *fonts);
void DeactivateAllTextPrinters(void);