diff options
author | Phlosioneer <mattmdrr2@gmail.com> | 2019-04-04 17:05:46 -0400 |
---|---|---|
committer | Phlosioneer <mattmdrr2@gmail.com> | 2019-04-04 17:05:46 -0400 |
commit | 1360b3a477f1107785900cd0c4e73ebf018f058c (patch) | |
tree | c050216422dc6ebe569b3926b85cb07d9cece8df /src/start_menu.c | |
parent | 50da52c29b3ee075c43f9832aaa4a7b8848e0ec7 (diff) |
RGB Constants
Diffstat (limited to 'src/start_menu.c')
-rw-r--r-- | src/start_menu.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/start_menu.c b/src/start_menu.c index 5b527e15e..fcde176ac 100644 --- a/src/start_menu.c +++ b/src/start_menu.c @@ -45,6 +45,7 @@ #include "constants/songs.h" #include "rom_8011DC0.h" #include "union_room.h" +#include "constants/rgb.h" // Menu actions enum @@ -1237,7 +1238,7 @@ static void sub_80A0550(u8 taskId) DrawTextBorderOuter(0, 8, 14); PutWindowTilemap(0); CopyWindowToVram(0, 3); - BeginNormalPaletteFade(0xFFFFFFFF, 0, 16, 0, 0); + BeginNormalPaletteFade(0xFFFFFFFF, 0, 16, 0, RGB_BLACK); if (gWirelessCommType != 0 && InUnionRoom()) { @@ -1270,7 +1271,7 @@ static void sub_80A0550(u8 taskId) } break; case 3: - BeginNormalPaletteFade(0xFFFFFFFF, 0, 0, 16, 0); + BeginNormalPaletteFade(0xFFFFFFFF, 0, 0, 16, RGB_BLACK); *step = 4; break; case 4: |