summaryrefslogtreecommitdiff
path: root/src/naming_screen.c
diff options
context:
space:
mode:
authorhuderlem <huderlem@gmail.com>2019-12-15 09:42:13 -0600
committerGitHub <noreply@github.com>2019-12-15 09:42:13 -0600
commitfee36224eda1acc4329646caf0e65a891928afc0 (patch)
treed2f222de1bee8df2adee05b778cc9a34e3567848 /src/naming_screen.c
parent6967caefb246f9709032049b0ae2baee71f71eb6 (diff)
parenta04347816f71a9a6d92579d0d6b54268c6c8a96d (diff)
Merge pull request #925 from GriffinRichards/doc-matchcall
Document some pokenav match call
Diffstat (limited to 'src/naming_screen.c')
-rw-r--r--src/naming_screen.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/naming_screen.c b/src/naming_screen.c
index 3d0d71866..68eeded91 100644
--- a/src/naming_screen.c
+++ b/src/naming_screen.c
@@ -33,7 +33,6 @@ EWRAM_DATA static struct NamingScreenData *gNamingScreenData = NULL;
extern u16 gKeyRepeatStartDelay;
// extern text
-extern const u8 gExpandedPlaceholder_Empty[];
extern const u8 gText_MoveOkBack[];
extern const u8 gText_YourName[];
extern const u8 gText_BoxName[];
@@ -1679,7 +1678,7 @@ static void sub_80E4D10(void)
for (i = 0; i < maxChars; i++)
{
temp[0] = gNamingScreenData->textBuffer[i];
- temp[1] = gExpandedPlaceholder_Empty[0];
+ temp[1] = gText_ExpandedPlaceholder_Empty[0];
unk2 = (IsLetter(temp[0]) == TRUE) ? 2 : 0;
AddTextPrinterParameterized(gNamingScreenData->windows[2], 1, temp, i * 8 + unk + unk2, 1, 0xFF, NULL);