diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2024-03-11 18:12:15 -0400 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2024-03-11 18:12:15 -0400 |
| commit | 029ddf6bb978f76c55fc98ef9079abd5fc0bbdf2 (patch) | |
| tree | b076203d7a1552e6f63aebb6478c737c12b470fd /src/d/actor/d_a_am2.cpp | |
| parent | 44761305b99127ee12c72c01030a750c9c77de0b (diff) | |
minor inline cleanup
Diffstat (limited to 'src/d/actor/d_a_am2.cpp')
| -rw-r--r-- | src/d/actor/d_a_am2.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/d/actor/d_a_am2.cpp b/src/d/actor/d_a_am2.cpp index f2ee1ea9..3072dcef 100644 --- a/src/d/actor/d_a_am2.cpp +++ b/src/d/actor/d_a_am2.cpp @@ -127,7 +127,7 @@ static BOOL daAM2_Draw(am2_class* i_this) { i_this->mpBrkAnm->remove(model->getModelData()); i_this->mpBtkAnm->remove(model->getModelData()); - if (!fopAcM_checkStatus(i_this, fopAcStts_CARRY_e)) { + if (!fopAcM_CheckStatus(i_this, fopAcStts_CARRY_e)) { dComIfGd_setSimpleShadow2( &i_this->current.pos, i_this->mAcch.GetGroundH(), 50.0f, i_this->mAcch.m_gnd, 0, 1.0f, dDlst_shadowControl_c::getSimpleTex() @@ -684,7 +684,7 @@ static void action_mahi(am2_class* i_this) { fopAcM_seStart(actor, JA_SE_CM_AM2_JUMP, 0); i_this->mCountUpTimers[1] = 0; } - if (fopAcM_checkStatus(actor, fopAcStts_CARRY_e)) { + if (fopAcM_CheckStatus(actor, fopAcStts_CARRY_e)) { i_this->mAcchRadius = 40.0f + g_regHIO.mChild[8].mFloatRegs[10]; i_this->mbMadeWaterSplash = false; i_this->mRippleCb.end(); @@ -708,7 +708,7 @@ static void action_mahi(am2_class* i_this) { if (i_this->mPickedUpYPos + 10.0f <= actor->current.pos.y) { cLib_addCalcAngleS2(&actor->shape_angle.y, actor->current.angle.y, 1, 0x1000); } - if (!fopAcM_checkStatus(actor, fopAcStts_CARRY_e)) { + if (!fopAcM_CheckStatus(actor, fopAcStts_CARRY_e)) { i_this->mAcchRadius = 40.0f + g_regHIO.mChild[8].mFloatRegs[10]; i_this->mBodyCyl.OnCoSetBit(); if (actor->speedF > 0.0f) { @@ -807,7 +807,7 @@ static void action_mahi(am2_class* i_this) { i_this->mAction = ACTION_DOUSA; i_this->mState = 0; - if (fopAcM_checkStatus(actor, fopAcStts_CARRY_e)) { + if (fopAcM_CheckStatus(actor, fopAcStts_CARRY_e)) { fopAcM_cancelCarryNow(actor); actor->attention_info.flags &= ~fopAc_Attn_ACTION_CARRY_e; actor->gravity = -4.0f; @@ -827,7 +827,7 @@ static void action_mahi(am2_class* i_this) { } if (i_this->mCountDownTimers[3] == 1) { - if (fopAcM_checkStatus(actor, fopAcStts_CARRY_e)) { + if (fopAcM_CheckStatus(actor, fopAcStts_CARRY_e)) { fopAcM_cancelCarryNow(actor); actor->attention_info.flags &= ~fopAc_Attn_ACTION_CARRY_e; } @@ -840,7 +840,7 @@ static void action_mahi(am2_class* i_this) { } } - if (fopAcM_checkStatus(actor, fopAcStts_CARRY_e) || i_this->mState == 0xF || !week_atari_check(i_this)) { + if (fopAcM_CheckStatus(actor, fopAcStts_CARRY_e) || i_this->mState == 0xF || !week_atari_check(i_this)) { body_atari_check(i_this); } } |
