diff options
author | huderlem <huderlem@gmail.com> | 2019-04-08 17:30:28 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-08 17:30:28 -0500 |
commit | ce93d3ab9ac460ba771863df60e36be8497b7c78 (patch) | |
tree | c0b78fe2cd3bd406c16d244dd257ccd5d751f9ef /src/hof_pc.c | |
parent | c8ce1a0a1f533a265d5134660c31b1ec6e8b86e0 (diff) | |
parent | 50350cc2e1c26082f9d852e97e1698f7254d4145 (diff) |
Merge pull request #661 from Phlosioneer/contest-ai-cleanup
contest & contest_ai cleanup
Diffstat (limited to 'src/hof_pc.c')
-rw-r--r-- | src/hof_pc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/hof_pc.c b/src/hof_pc.c index d76f04372..01015ee81 100644 --- a/src/hof_pc.c +++ b/src/hof_pc.c @@ -6,6 +6,7 @@ #include "script.h" #include "script_menu.h" #include "task.h" +#include "constants/rgb.h" static void ReshowPCMenuAfterHallOfFamePC(void); static void Task_WaitForPaletteFade(u8); @@ -28,7 +29,7 @@ static void ReshowPCMenuAfterHallOfFamePC(void) Overworld_PlaySpecialMapMusic(); ScrSpecial_CreatePCMenu(); ScriptMenu_DisplayPCStartupPrompt(); - BeginNormalPaletteFade(0xFFFFFFFF, 0, 0x10, 0, 0); + BeginNormalPaletteFade(0xFFFFFFFF, 0, 0x10, 0, RGB_BLACK); CreateTask(Task_WaitForPaletteFade, 10); } |