Skip to content

Commit

Permalink
Merge pull request #606 from CT075/typo
Browse files Browse the repository at this point in the history
fix typos
  • Loading branch information
RevoSucks authored Apr 30, 2024
2 parents ec5a125 + bf7f845 commit 00c4764
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion include/efxbattle.h
Original file line number Diff line number Diff line change
Expand Up @@ -2557,7 +2557,7 @@ void NewEfxAvoid(struct Anim * anim);
void EfxAvoidMain(struct ProcEfxHPBar * proc);
void NewEfxHPBarLive(struct Anim * anim);
void EfxHPBarLiveMain(struct ProcEfxHPBar * proc);
void NewEfxNoDmage(struct Anim * anim1, struct Anim * anim2, int death);
void NewEfxNoDamage(struct Anim * anim1, struct Anim * anim2, int death);
void EfxNoDamageMain(struct ProcEfxHPBar * proc);
void NewEfxNoDamageYure(struct Anim * anim1, struct Anim * anim2);
void EfxNoDamageYureMain(struct ProcEfxHPBar * proc);
Expand Down
2 changes: 1 addition & 1 deletion include/ekrbattle.h
Original file line number Diff line number Diff line change
Expand Up @@ -788,7 +788,7 @@ void ekrBattle_80503EC(struct ProcEkrBattle * proc);
void ekrBattle_StartPromotion(struct ProcEkrBattle * proc);
void ekrBattle_WaitPromotionIdle(struct ProcEkrBattle * proc);
void ekrBattleInRoundIdle(struct ProcEkrBattle * proc);
void ekrBattleOnBattkeEnd(struct ProcEkrBattle * proc);
void ekrBattleOnBattleEnd(struct ProcEkrBattle * proc);
void ekrBattle_8050600(struct ProcEkrBattle * proc);
void ekrBattle_WaitForPostBattleAct(struct ProcEkrBattle * proc);
void ekrBattleExecExpGain(struct ProcEkrBattle * proc);
Expand Down
2 changes: 1 addition & 1 deletion src/banim-efxhpbar.c
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ void EfxHPBarLiveMain(struct ProcEfxHPBar * proc)
proc->timer = 0x1E;
}

void NewEfxNoDmage(struct Anim * anim1, struct Anim * anim2, int death)
void NewEfxNoDamage(struct Anim * anim1, struct Anim * anim2, int death)
{
struct BattleUnit * bu;
struct ProcEfxHPBar * proc;
Expand Down
4 changes: 2 additions & 2 deletions src/banim-ekrbattle.c
Original file line number Diff line number Diff line change
Expand Up @@ -626,10 +626,10 @@ void ekrBattleInRoundIdle(struct ProcEkrBattle *proc)
}

if (ret == 1)
proc->proc_idleCb = (ProcFunc)ekrBattleOnBattkeEnd;
proc->proc_idleCb = (ProcFunc)ekrBattleOnBattleEnd;
}

void ekrBattleOnBattkeEnd(struct ProcEkrBattle *proc)
void ekrBattleOnBattleEnd(struct ProcEkrBattle *proc)
{
proc->speedup = false;
proc->proc_idleCb = (ProcFunc)ekrBattle_8050600;
Expand Down
4 changes: 2 additions & 2 deletions src/banim-ekrutils.c
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ void StartBattleAnimHitEffects(struct Anim *anim, int type, int a, int b)
NewEfxFlashHPBar(animr5, 0, 5);
NewEfxFlashUnit(animr5, 0, 8, 0);
} else {
NewEfxNoDmage(animr5, animr8, 0);
NewEfxNoDamage(animr5, animr8, 0);
}
break;

Expand Down Expand Up @@ -171,7 +171,7 @@ void StartBattleAnimResireHitEffects(struct Anim * anim, int type)
NewEfxFlashUnit(animR5, 0, 8, 0);
} else {
gUnknown_02017750 = 2;
NewEfxNoDmage(animR5, animR8, 1);
NewEfxNoDamage(animR5, animR8, 1);
}
break;

Expand Down

0 comments on commit 00c4764

Please sign in to comment.