diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2025-03-30 18:45:59 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-30 15:45:59 -0700 |
| commit | 559d389e3dc7d47136b5f2e98ad44c48b5641225 (patch) | |
| tree | c3cf8f64993531f4c91bd11b75476a62bdadcfd6 /src/d/actor/d_a_e_rdy.cpp | |
| parent | ed42b15988227e4f32858093ad430fee06c5adc5 (diff) | |
Fix dPnt struct (#2361)
* Fix dPnt struct
* Fix Vec warning
Diffstat (limited to 'src/d/actor/d_a_e_rdy.cpp')
| -rw-r--r-- | src/d/actor/d_a_e_rdy.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/d/actor/d_a_e_rdy.cpp b/src/d/actor/d_a_e_rdy.cpp index 45ac46e3e3..e0538eb59a 100644 --- a/src/d/actor/d_a_e_rdy.cpp +++ b/src/d/actor/d_a_e_rdy.cpp @@ -654,7 +654,7 @@ static BOOL path_check(e_rdy_class* i_this) { cXyz start, end; start = i_this->current.pos; start.y += 10.0f; - dStage_dPnt_c* point = i_this->mpPath->m_points; + dPnt* point = i_this->mpPath->m_points; for (int i = 0; i < i_this->mpPath->m_num; i++, point++) { if (i < 0xff) { end.x = point->m_position.x; @@ -1258,7 +1258,7 @@ static s8 e_rdy_bow2(e_rdy_class* i_this) { } if (i_this->mpPath != NULL) { - dStage_dPnt_c* point = i_this->mpPath->m_points; + dPnt* point = i_this->mpPath->m_points; i_this->mArrowTarget.x = point->m_position.x; i_this->mArrowTarget.y = point->m_position.y; i_this->mArrowTarget.z = point->m_position.z; @@ -2851,7 +2851,7 @@ static void e_rdy_jyunkai(e_rdy_class* i_this) { case 0: { anm_init(i_this, ANM_WALK, 10.0f, J3DFrameCtrl::EMode_LOOP, 1.0f); i_this->mMode = 1; - dStage_dPnt_c* point = &i_this->mpPath->m_points[i_this->mPathIndex]; + dPnt* point = &i_this->mpPath->m_points[i_this->mPathIndex]; i_this->field_0x5bc = point->m_position; // fallthrough } |
