Skip to content

Commit

Permalink
adjust return type for it_8026DF34
Browse files Browse the repository at this point in the history
  • Loading branch information
wyatt-avilla committed Mar 23, 2024
1 parent acf5dd6 commit 698a8a8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/melee/it/it_266F.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
/* 26D62C */ void it_8026D62C(Item_GObj*, HSD_GObjEvent);
/* 26D9A0 */ bool it_8026D9A0(Item_GObj*);
/* 26DA08 */ bool it_8026DA08(Item_GObj*);
/* 26DF34 */ s32 it_8026DF34(void);
/* 26DF34 */ bool it_8026DF34(void);
/* 26DFB0 */ bool it_8026DFB0(void);
/* 26E0F4 */ void it_8026E0F4(Item_GObj*);
/* 26E15C */ void it_8026E15C(Item_GObj*, HSD_GObjEvent);
Expand Down
4 changes: 2 additions & 2 deletions src/melee/it/items/ithammer.c
Original file line number Diff line number Diff line change
Expand Up @@ -157,12 +157,12 @@ void it_80294088(HSD_GObj* gobj)
it_80272860(gobj, temp_r4->x10_fall_speed, temp_r4->x14_fall_speed_max);
}

int it_802940B8(HSD_GObj* gobj)
bool it_802940B8(HSD_GObj* gobj)
{
Item* it = GET_ITEM(gobj);
if (it->xD4C != 0) {
it_8026E15C(gobj, it_80293F84);
return 0;
return false;
}
return it_8026DF34();
}
Expand Down

0 comments on commit 698a8a8

Please sign in to comment.