diff options
author | GriffinR <griffin.richards@comcast.net> | 2019-12-10 13:48:20 -0500 |
---|---|---|
committer | huderlem <huderlem@gmail.com> | 2019-12-10 19:29:23 -0600 |
commit | ed1ff0ad774c67e7184fb0c862005e487fed42ec (patch) | |
tree | 4df9e3ca8fc80c484d9722828df8e1b426ff62eb /src/union_room_chat.c | |
parent | fe164529990dd73921a22cb2bbb365241c76fc75 (diff) |
Document misc strings and text colors
Diffstat (limited to 'src/union_room_chat.c')
-rwxr-xr-x | src/union_room_chat.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/union_room_chat.c b/src/union_room_chat.c index be2269522..f212c69a7 100755 --- a/src/union_room_chat.c +++ b/src/union_room_chat.c @@ -1705,7 +1705,7 @@ void copy_strings_to_sav1(void) StringCopy(gSaveBlock1Ptr->unk3C88[4], gText_Lets); StringCopy(gSaveBlock1Ptr->unk3C88[5], gText_Ok); StringCopy(gSaveBlock1Ptr->unk3C88[6], gText_Sorry); - StringCopy(gSaveBlock1Ptr->unk3C88[7], gText_YayUnkF9F9); + StringCopy(gSaveBlock1Ptr->unk3C88[7], gText_YaySmileEmoji); StringCopy(gSaveBlock1Ptr->unk3C88[8], gText_ThankYou); StringCopy(gSaveBlock1Ptr->unk3C88[9], gText_ByeBye); } @@ -2583,9 +2583,9 @@ static void sub_80201A4(void) FillWindowPixelBuffer(2, PIXEL_FILL(15)); page = GetCurrentKeyboardPage(); - sp[0] = 0; - sp[1] = 14; - sp[2] = 13; + sp[0] = TEXT_COLOR_TRANSPARENT; + sp[1] = TEXT_DYNAMIC_COLOR_5; + sp[2] = TEXT_DYNAMIC_COLOR_4; if (page != UNION_ROOM_KB_PAGE_COUNT) { str = &sp[4]; @@ -2688,7 +2688,7 @@ static void sub_802040C(void) static void sub_8020420(u16 row, u8 *str, u8 arg2) { u8 color[3]; - color[0] = 1; + color[0] = TEXT_COLOR_WHITE; color[1] = arg2 * 2 + 2; color[2] = arg2 * 2 + 3; FillWindowPixelRect(0, PIXEL_FILL(1), 0, row * 15, 168, 15); |