diff options
| author | Ozero4 <114027116+Ozero4@users.noreply.github.com> | 2025-10-27 16:39:13 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-27 12:39:13 -0300 |
| commit | 7af068b2a2fb21768f33a91ecc644e29cf0caf17 (patch) | |
| tree | d05914aeb3fa9be156666f22884f01ec8505e917 /src | |
| parent | 3b3b117100edfc41adcd6f315b3772fc63e01e2e (diff) | |
Rename EnHorse_CheckBoost (#1824)
Diffstat (limited to 'src')
| -rw-r--r-- | src/overlays/actors/ovl_En_Horse/z_en_horse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/overlays/actors/ovl_En_Horse/z_en_horse.c b/src/overlays/actors/ovl_En_Horse/z_en_horse.c index 31c0af338..b5ff9a88e 100644 --- a/src/overlays/actors/ovl_En_Horse/z_en_horse.c +++ b/src/overlays/actors/ovl_En_Horse/z_en_horse.c @@ -4011,7 +4011,7 @@ void EnHorse_UpdateBgCheckInfo(EnHorse* this, PlayState* play) { } } -void func_80886C00(EnHorse* this, PlayState* play) { +void EnHorse_CheckBoost(EnHorse* this, PlayState* play) { Input* input = &play->state.input[this->unk_52C]; if (((this->action == ENHORSE_ACTION_MOUNTED_WALK) || (this->action == ENHORSE_ACTION_MOUNTED_TROT) || @@ -4239,7 +4239,7 @@ void EnHorse_Update(Actor* thisx, PlayState* play2) { if (!(this->stateFlags & ENHORSE_INACTIVE)) { if ((this->action == ENHORSE_ACTION_MOUNTED_GALLOP) || (this->action == ENHORSE_ACTION_MOUNTED_TROT) || (this->action == ENHORSE_ACTION_MOUNTED_WALK)) { - func_80886C00(this, play); + EnHorse_CheckBoost(this, play); } if (this->playerControlled == true) { |
