summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDiegoisawesome <diego@domoreaweso.me>2018-01-24 00:18:10 -0600
committerDiegoisawesome <diego@domoreaweso.me>2018-01-24 00:18:10 -0600
commit0c47cd6fc3723bffce2d36c41ab601eab8831626 (patch)
tree58dfc0f471461a60dea50399b612b044876fa002 /src
parente5596be256349f957f0543f4aa45fad9d1bb801a (diff)
Renamed link_strings and fixed warning in fldeff_cut.s
Diffstat (limited to 'src')
-rw-r--r--src/naming_screen.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/naming_screen.c b/src/naming_screen.c
index 889956560..54b6f0bb9 100644
--- a/src/naming_screen.c
+++ b/src/naming_screen.c
@@ -1738,10 +1738,10 @@ static void sub_80E4E5C(void)
static void sub_80E4EF0(void)
{
- const u8 arr[] = { 15, 1, 2 };
+ const struct TextColor color[] = { 15, 1, 2 };
FillWindowPixelBuffer(gNamingScreenData->windows[4], 0xFF);
- box_print(gNamingScreenData->windows[4], 0, 2, 1, arr, 0, gText_MoveOkBack);
+ box_print(gNamingScreenData->windows[4], 0, 2, 1, color, 0, gText_MoveOkBack);
PutWindowTilemap(gNamingScreenData->windows[4]);
CopyWindowToVram(gNamingScreenData->windows[4], 3);
}