summaryrefslogtreecommitdiff
path: root/src/c
diff options
context:
space:
mode:
authorLagoLunatic <LagoLunatic@users.noreply.github.com>2024-03-11 18:12:15 -0400
committerLagoLunatic <LagoLunatic@users.noreply.github.com>2024-03-11 18:12:15 -0400
commit029ddf6bb978f76c55fc98ef9079abd5fc0bbdf2 (patch)
treeb076203d7a1552e6f63aebb6478c737c12b470fd /src/c
parent44761305b99127ee12c72c01030a750c9c77de0b (diff)
minor inline cleanup
Diffstat (limited to 'src/c')
-rw-r--r--src/c/c_damagereaction.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/c/c_damagereaction.cpp b/src/c/c_damagereaction.cpp
index 9dd4c3e6..846fb48f 100644
--- a/src/c/c_damagereaction.cpp
+++ b/src/c/c_damagereaction.cpp
@@ -228,7 +228,7 @@ BOOL enemy_ice(enemyice* ei) {
if (ei->m00C != 1) {
ac->attention_info.flags |= fopAc_Attn_ACTION_CARRY_e;
ac->attention_info.distances[4] = 0x12;
- if (fopAcM_checkStatus(ac, fopAcStts_CARRY_e)) {
+ if (fopAcM_CheckStatus(ac, fopAcStts_CARRY_e)) {
ac->attention_info.flags &= ~fopAc_Attn_ACTION_CARRY_e;
ei->mState = 3;
if (ei->m00C == 2) {
@@ -239,7 +239,7 @@ BOOL enemy_ice(enemyice* ei) {
break;
case 3: // Frozen and being carried around by the player
frozen = TRUE;
- if (!fopAcM_checkStatus(ac, fopAcStts_CARRY_e)) {
+ if (!fopAcM_CheckStatus(ac, fopAcStts_CARRY_e)) {
if (fopAcM_GetSpeedF(ac) > 0.0f) {
ei->mSpeedF = 25.0f + g_regHIO.mChild[0].mFloatRegs[5];
ei->mSpeed.y = 20.0f + g_regHIO.mChild[0].mFloatRegs[6];