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_ba.cpp | |
| parent | ed42b15988227e4f32858093ad430fee06c5adc5 (diff) | |
Fix dPnt struct (#2361)
* Fix dPnt struct
* Fix Vec warning
Diffstat (limited to 'src/d/actor/d_a_e_ba.cpp')
| -rw-r--r-- | src/d/actor/d_a_e_ba.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/d/actor/d_a_e_ba.cpp b/src/d/actor/d_a_e_ba.cpp index 6edc721c21..abc2b47779 100644 --- a/src/d/actor/d_a_e_ba.cpp +++ b/src/d/actor/d_a_e_ba.cpp @@ -167,7 +167,7 @@ static BOOL path_check(e_ba_class* i_this) { vec1 = i_this->current.pos; vec1.y += 100.0f; static bool check_index[255]; - 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++) { vec2.x = point->m_position.x; vec2.y = point->m_position.y + 100.0f; @@ -507,7 +507,7 @@ static void e_ba_return(e_ba_class* i_this) { /* 8068039C-806806B4 00179C 0318+00 1/1 0/0 0/0 .text e_ba_path_fly__FP10e_ba_class */ static void e_ba_path_fly(e_ba_class* i_this) { - dStage_dPnt_c* point; + dPnt* point; switch (i_this->mMode) { case 0: |
