diff options
author | GriffinR <griffin.richards@comcast.net> | 2019-12-15 11:42:50 -0500 |
---|---|---|
committer | GriffinR <griffin.richards@comcast.net> | 2019-12-15 11:42:50 -0500 |
commit | 96ec5e1b84f2c1d189dc67b53a113d0299b4f37b (patch) | |
tree | d7836932a7ee4a3ebf3eb766ddbc6b4c9a0022a2 /src/shop.c | |
parent | 6967caefb246f9709032049b0ae2baee71f71eb6 (diff) |
Use fadescreen constants
Diffstat (limited to 'src/shop.c')
-rwxr-xr-x | src/shop.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shop.c b/src/shop.c index 324154d2e..3fe490941 100755 --- a/src/shop.c +++ b/src/shop.c @@ -348,7 +348,7 @@ static void Task_HandleShopMenuBuy(u8 taskId) data[8] = (u32)CB2_InitBuyMenu >> 16; data[9] = (u32)CB2_InitBuyMenu; gTasks[taskId].func = Task_GoToBuyOrSellMenu; - FadeScreen(1, 0); + FadeScreen(FADE_TO_BLACK, 0); } static void Task_HandleShopMenuSell(u8 taskId) @@ -357,7 +357,7 @@ static void Task_HandleShopMenuSell(u8 taskId) data[8] = (u32)CB2_GoToSellMenu >> 16; data[9] = (u32)CB2_GoToSellMenu; gTasks[taskId].func = Task_GoToBuyOrSellMenu; - FadeScreen(1, 0); + FadeScreen(FADE_TO_BLACK, 0); } void CB2_ExitSellMenu(void) |