diff options
author | Diegoisawesome <Diegoisawesome@users.noreply.github.com> | 2018-10-14 13:15:31 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-14 13:15:31 -0500 |
commit | 0979ea91fb247b642cf7aa9e0bea5265917923d8 (patch) | |
tree | aa80ec77fadae2ccc81bd2dd655bd45a9532894f /src/item_use.c | |
parent | d40e737d52f39a0b5516b97a90c985825a892b63 (diff) | |
parent | c3113db931ad406154c3bfd60dc26458e0d5fe3f (diff) |
Merge pull request #357 from DizzyEggg/move_heap
Move HEAP_SIZE to malloc and use void instead of empty argument list
Diffstat (limited to 'src/item_use.c')
-rwxr-xr-x | src/item_use.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/item_use.c b/src/item_use.c index 67bdabd87..633d975a8 100755 --- a/src/item_use.c +++ b/src/item_use.c @@ -203,7 +203,7 @@ u8 CheckIfItemIsTMHMOrEvolutionStone(u16 itemId) return 0; } -void sub_80FD254() +void sub_80FD254(void) { struct MailStruct mail; mail.itemId = gSpecialVar_ItemId; @@ -249,7 +249,7 @@ void ItemUseOnFieldCB_Bike(u8 taskId) DestroyTask(taskId); } -bool32 CanFish() +bool32 CanFish(void) { s16 x, y; u16 tileBehavior; |