summaryrefslogtreecommitdiff
path: root/src/pokeblock_feed.c
diff options
context:
space:
mode:
authorPhlosioneer <mattmdrr2@gmail.com>2019-04-04 17:05:46 -0400
committerPhlosioneer <mattmdrr2@gmail.com>2019-04-04 17:05:46 -0400
commit1360b3a477f1107785900cd0c4e73ebf018f058c (patch)
treec050216422dc6ebe569b3926b85cb07d9cece8df /src/pokeblock_feed.c
parent50da52c29b3ee075c43f9832aaa4a7b8848e0ec7 (diff)
RGB Constants
Diffstat (limited to 'src/pokeblock_feed.c')
-rw-r--r--src/pokeblock_feed.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/pokeblock_feed.c b/src/pokeblock_feed.c
index 59ba1b4dc..9c1be0f15 100644
--- a/src/pokeblock_feed.c
+++ b/src/pokeblock_feed.c
@@ -23,6 +23,7 @@
#include "text_window.h"
#include "trig.h"
#include "util.h"
+#include "constants/rgb.h"
struct PokeblockFeedStruct
{
@@ -591,7 +592,7 @@ static bool8 TransitionToPokeblockFeedScene(void)
gMain.state++;
break;
case 13:
- BeginNormalPaletteFade(0xFFFFFFFF, 0, 0x10, 0, 0);
+ BeginNormalPaletteFade(0xFFFFFFFF, 0, 0x10, 0, RGB_BLACK);
gPaletteFade.bufferTransferDisabled = 0;
gMain.state++;
break;
@@ -805,7 +806,7 @@ static void Task_ReturnAfterPaletteFade(u8 taskId)
static void Task_PaletteFadeToReturn(u8 taskId)
{
- BeginNormalPaletteFade(0xFFFFFFFF, 0, 0, 0x10, 0);
+ BeginNormalPaletteFade(0xFFFFFFFF, 0, 0, 0x10, RGB_BLACK);
gTasks[taskId].func = Task_ReturnAfterPaletteFade;
}