summaryrefslogtreecommitdiff
path: root/src/union_room_chat_display.c
diff options
context:
space:
mode:
authorKurausukun <lord.uber1@gmail.com>2021-04-09 22:34:08 -0400
committerKurausukun <lord.uber1@gmail.com>2021-04-09 22:34:08 -0400
commit4b182affb63101bb73bedc2a1e94babb9352cc36 (patch)
treec4b025af4d93cd1f512fc749d914dfa5721b177d /src/union_room_chat_display.c
parent52c25bac8e7c9fe7ad97d7890be89c7feededf65 (diff)
standardize "grey" to "gray"
Diffstat (limited to 'src/union_room_chat_display.c')
-rw-r--r--src/union_room_chat_display.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/union_room_chat_display.c b/src/union_room_chat_display.c
index 27ce26a02..60c202dcd 100644
--- a/src/union_room_chat_display.c
+++ b/src/union_room_chat_display.c
@@ -600,7 +600,7 @@ static bool32 DisplaySubtask_UpdateMessageBuffer(u8 *state)
UnionRoomChat_GetBufferSelectionRegion(&start, &length);
FillWin1Rect(start, length, PIXEL_FILL(0));
str = UnionRoomChat_GetMessageEntryBuffer();
- PrintOnWin1Parameterized(0, str, TEXT_COLOR_LIGHT_GREY, TEXT_COLOR_WHITE, TEXT_COLOR_DARK_GREY);
+ PrintOnWin1Parameterized(0, str, TEXT_COLOR_LIGHT_GRAY, TEXT_COLOR_WHITE, TEXT_COLOR_DARK_GRAY);
CopyWindowToVram(1, COPYWIN_GFX);
break;
case 1:
@@ -670,7 +670,7 @@ static bool32 DisplaySubtask_CancelRegister(u8 *state)
str = UnionRoomChat_GetEndOfMessageEntryBuffer();
length = StringLength_Multibyte(str);
FillWin1Rect(x, length, PIXEL_FILL(0));
- PrintOnWin1Parameterized(x, str, TEXT_COLOR_LIGHT_GREY, TEXT_COLOR_WHITE, TEXT_COLOR_DARK_GREY);
+ PrintOnWin1Parameterized(x, str, TEXT_COLOR_LIGHT_GRAY, TEXT_COLOR_WHITE, TEXT_COLOR_DARK_GRAY);
CopyWindowToVram(1, COPYWIN_GFX);
break;
case 1: