Skip to content

Commit

Permalink
Attempt 2 of type comparison resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
PsiLupan committed Aug 11, 2024
1 parent 56352b1 commit 5af33d0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/melee/ft/ft_0881.c
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ static inline void inlineB0(Fighter* fp, s32 move_id)
fp->x206C_attack_instance = plStale_IncrementAttackInstance();
}

void ft_800890D0(Fighter* fp, s32 move_id)
void ft_800890D0(Fighter* fp, u32 move_id)
{
if (move_id == 1 || move_id != fp->x2068_attackID) {
inlineB0(fp, move_id);
Expand All @@ -159,7 +159,7 @@ void ft_800890D0(Fighter* fp, s32 move_id)

/// #ft_80089228

static void inlineC0(Fighter* fp, s32 move_id)
static void inlineC0(Fighter* fp, u32 move_id)
{
if (move_id == fp->x2068_attackID) {
inlineB0(fp, move_id);
Expand Down
2 changes: 1 addition & 1 deletion src/melee/ft/ft_0881.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
/* 088A50 */ void ft_80088A50(Fighter* fp);
/* 088C5C */ void ft_80088C5C(Fighter_GObj* gobj);
/* 0890BC */ void ft_800890BC(Fighter* fp);
/* 0890D0 */ void ft_800890D0(Fighter* fp, s32 move_id);
/* 0890D0 */ void ft_800890D0(Fighter* fp, u32 move_id);
/* 089228 */ UNK_RET ft_80089228(UNK_PARAMS);
/* 0892A0 */ void ft_800892A0(Fighter_GObj* gobj);

Expand Down

0 comments on commit 5af33d0

Please sign in to comment.