diff options
author | Evan <eroelke@gmail.com> | 2019-11-26 14:02:20 -0700 |
---|---|---|
committer | Evan <eroelke@gmail.com> | 2019-11-26 14:02:20 -0700 |
commit | 5ad5764d4edd275b7ce818570b70bf7679546539 (patch) | |
tree | 995295d73a3b734513b8f4088042361dc55808d2 /src | |
parent | 31d8bfb04850a9a1c1639b40b7ff305a673b9c09 (diff) |
fix return type
Diffstat (limited to 'src')
-rw-r--r-- | src/shop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shop.c b/src/shop.c index a8294fd72..b15d6a716 100644 --- a/src/shop.c +++ b/src/shop.c @@ -108,7 +108,7 @@ EWRAM_DATA struct MartHistory gShopMenuHistory = {0}; //Function Declarations static u8 CreateShopMenu(u8 a0); -static u8 GetMartTypeFromItemList(bool32 a0); +static bool8 GetMartTypeFromItemList(bool32 a0); static void SetShopItemsForSale(const u16 *items); static void SetShopMenuCallback(MainCallback callback); static void Task_ShopMenu(u8 taskId); |