diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2021-02-24 11:01:02 -0500 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2021-02-24 11:03:51 -0500 |
commit | b71b10623b31065a9a29b43938cf602087bcfc73 (patch) | |
tree | b20d6c8f8c20f4adeac0983110281f09e7923c05 /src/union_room_chat.c | |
parent | c6141fea831a30a0d2de24b3c02375a01014ec97 (diff) |
Add palette selection constants
Diffstat (limited to 'src/union_room_chat.c')
-rwxr-xr-x | src/union_room_chat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/union_room_chat.c b/src/union_room_chat.c index 7b54dc751..3733abe1e 100755 --- a/src/union_room_chat.c +++ b/src/union_room_chat.c @@ -930,8 +930,8 @@ static void CB2_LoadInterface(void) RunDisplaySubtasks(); if (!IsDisplaySubtask0Active()) { - BlendPalettes(0xFFFFFFFF, 16, RGB_BLACK); - BeginNormalPaletteFade(0xFFFFFFFF, -1, 16, 0, RGB_BLACK); + BlendPalettes(PALETTES_ALL, 16, RGB_BLACK); + BeginNormalPaletteFade(PALETTES_ALL, -1, 16, 0, RGB_BLACK); SetVBlankCallback(VBlankCB_UnionRoomChatMain); gMain.state++; } @@ -1567,7 +1567,7 @@ static void Chat_SaveAndExit(void) sChat->funcState = 12; break; case 12: - BeginNormalPaletteFade(0xFFFFFFFF, -1, 0, 16, RGB_BLACK); + BeginNormalPaletteFade(PALETTES_ALL, -1, 0, 16, RGB_BLACK); sChat->funcState = 13; break; case 13: |