summaryrefslogtreecommitdiff
path: root/arm9/src
diff options
context:
space:
mode:
authorred031000 <rubenru09@aol.com>2021-03-12 03:30:43 +0000
committerred031000 <rubenru09@aol.com>2021-03-12 03:30:43 +0000
commitc7b8a8b0762c5eef4a678eb9cbc036e4fbb5568b (patch)
tree5360b498a3c3a41787ec8459e4cf85060b8136eb /arm9/src
parent82b20d5a8badb77010fb5dfc4d20b9282985703a (diff)
name GenerateFontHalfRowLookupTable and CopyWindowToVram
Diffstat (limited to 'arm9/src')
-rw-r--r--arm9/src/text.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/arm9/src/text.c b/arm9/src/text.c
index ccc86bab..58bfa220 100644
--- a/arm9/src/text.c
+++ b/arm9/src/text.c
@@ -17,8 +17,8 @@ extern void FUN_0201C238(struct TextPrinter *printer);
extern u32 RenderFont(struct TextPrinter *printer);
extern void FUN_0201C1A8(struct TextPrinter *printer);
extern FUN_0201BFDC(); //no idea what this is
-extern void FUN_0201C05C(u8 fgColor, u8 bgColor, u8 shadowColor);
-extern void FUN_020191D0(u32 windowId);
+extern void GenerateFontHalfRowLookupTable(u8 fgColor, u8 bgColor, u8 shadowColor);
+extern void CopyWindowToVram(u32 windowId);
THUMB_FUNC void SetFontsPointer(const struct FontInfo *fonts)
{
@@ -196,7 +196,7 @@ THUMB_FUNC u16 AddTextPrinter(struct TextPrinterTemplate *printerTemplate, u32 s
u32 j = 0;
printer->textSpeedBottom = 0;
printer->textSpeedTop = 0;
- FUN_0201C05C(printerTemplate->fgColor, printerTemplate->bgColor, printerTemplate->shadowColor); //GenerateFontHalfRowLookupTable ?
+ GenerateFontHalfRowLookupTable(printerTemplate->fgColor, printerTemplate->bgColor, printerTemplate->shadowColor);
for (; j < 0x400; ++j)
{
if (RenderFont(printer) == 1)
@@ -206,7 +206,7 @@ THUMB_FUNC u16 AddTextPrinter(struct TextPrinterTemplate *printerTemplate, u32 s
}
if (speed != 0xff)
{
- FUN_020191D0(printer->printerTemplate.windowId); // CopyWindowToVram?
+ CopyWindowToVram(printer->printerTemplate.windowId); // CopyWindowToVram?
}
FUN_0201C238(printer);
FreeToHeap((void *)printer);