diff options
author | Diegoisawesome <Diegoisawesome@users.noreply.github.com> | 2018-12-24 01:33:57 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-24 01:33:57 -0600 |
commit | 980b055bf09215d89870730fa8cea2ac207e2260 (patch) | |
tree | 60c96f448c076fae793c378cd2327779b5821718 /src/text.c | |
parent | f835a356622b0038d82bd45fe698d5663091fcde (diff) | |
parent | 72aa9eb5a91bc36514eb5cf922c5cde209fba8c5 (diff) |
Merge pull request #471 from DizzyEggg/clean
Get rid of externs and add includes
Diffstat (limited to 'src/text.c')
-rw-r--r-- | src/text.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/text.c b/src/text.c index 39e412633..a439d3ced 100644 --- a/src/text.c +++ b/src/text.c @@ -9,12 +9,12 @@ #include "window.h" #include "text.h" #include "blit.h" +#include "menu.h" #include "dynamic_placeholder_text_util.h" extern u8 GetKeypadIconWidth(u8 keypadIconId); extern u16 Font6Func(struct TextPrinter *textPrinter); extern u32 GetGlyphWidthFont6(u16 glyphId, bool32 isJapanese); -extern int GetPlayerTextSpeed(); EWRAM_DATA struct TextPrinter gTempTextPrinter = {0}; EWRAM_DATA struct TextPrinter gTextPrinters[NUM_TEXT_PRINTERS] = {0}; |