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/unk_transition.c | |
parent | 50da52c29b3ee075c43f9832aaa4a7b8848e0ec7 (diff) |
RGB Constants
Diffstat (limited to 'src/unk_transition.c')
-rw-r--r-- | src/unk_transition.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/unk_transition.c b/src/unk_transition.c index 99479c866..cd91af07e 100644 --- a/src/unk_transition.c +++ b/src/unk_transition.c @@ -8,6 +8,7 @@ #include "trig.h" #include "bg.h" #include "gpu_regs.h" +#include "constants/rgb.h" typedef bool8 (*TransitionStateFunc)(struct Task *task); @@ -361,7 +362,7 @@ static bool8 sub_81DAB4C(struct Task *task) { if (task->data[3] == 31) { - BeginNormalPaletteFade(0xFFFFFFFF, -1, 0, 0x10, 0); + BeginNormalPaletteFade(0xFFFFFFFF, -1, 0, 0x10, RGB_BLACK); task->tState++; } else |