summaryrefslogtreecommitdiff
path: root/src/d/actor/d_a_do.cpp
diff options
context:
space:
mode:
authorTakaRikka <38417346+TakaRikka@users.noreply.github.com>2025-02-13 09:37:46 -0800
committerGitHub <noreply@github.com>2025-02-13 10:37:46 -0700
commit6e94efaefba6ea31023fbf52462a4b5c29eb36b4 (patch)
treed139bc7f8698273aa39a1e156a10c28ccb7ea866 /src/d/actor/d_a_do.cpp
parent2453c0e3333157090e839eeab768d19b6a2b0ba1 (diff)
d_a_obj_carry mostly done (#2301)
* d_a_obj_carry mostly done * cleanup some acch inlines
Diffstat (limited to 'src/d/actor/d_a_do.cpp')
-rw-r--r--src/d/actor/d_a_do.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/d/actor/d_a_do.cpp b/src/d/actor/d_a_do.cpp
index 297e218aa1..9343458392 100644
--- a/src/d/actor/d_a_do.cpp
+++ b/src/d/actor/d_a_do.cpp
@@ -1195,7 +1195,7 @@ static void do_hang(do_class* i_this) {
if (i_this->mTimer[0] == 0) {
i_this->mBgS_Acch.CrrPos(dComIfG_Bgsp());
- if (i_this->mBgS_Acch.i_ChkGroundHit()) {
+ if (i_this->mBgS_Acch.ChkGroundHit()) {
i_this->current.angle.x = 0;
anm_init(i_this, ANM_DOWN, 2.0f, 0, 2.0f);
i_this->mMode = 6;
@@ -1723,7 +1723,7 @@ static s8 do_boat(do_class* i_this) {
break;
case 7:
- if (i_this->mBgS_Acch.i_ChkGroundHit()) {
+ if (i_this->mBgS_Acch.ChkGroundHit()) {
i_this->mAction = ACT_HELP;
i_this->mMode = 0;
_this->speedF = 0.0f;