diff options
| author | TakaRikka <38417346+TakaRikka@users.noreply.github.com> | 2026-03-29 16:43:00 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-29 16:43:00 -0700 |
| commit | cb6ee4b21e25cb40a08c0f1effeebda79896a7e5 (patch) | |
| tree | f894ebc412808129583aaac83a8e1ff8580e0ea9 /src/d/d_stage.cpp | |
| parent | c98b96f94eff76d380c62f3935fefe56057dc99e (diff) | |
d_path / d_vibration debug work (#3138)
* dpath debug
* dvibration debug
* d_meter2_info debug
* gcyl/gpsh debug
Diffstat (limited to 'src/d/d_stage.cpp')
| -rw-r--r-- | src/d/d_stage.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/d/d_stage.cpp b/src/d/d_stage.cpp index f44f432d2f..0bb387a01f 100644 --- a/src/d/d_stage.cpp +++ b/src/d/d_stage.cpp @@ -2104,7 +2104,7 @@ static int dStage_pathInfoInit(dStage_dt_c* i_stage, void* i_data, int entryNum, i_stage->setPathInfo(path_c); - for (int i = 0; i < path_c->m_num; i++) { + for (int i = 0; i < path_c->num; i++) { if ((uintptr_t)path->m_points < 0x80000000) { path->m_points = (dPnt*)((uintptr_t)path->m_points + i_stage->getPntInf()->m_pnt_offset); } @@ -2129,7 +2129,7 @@ static int dStage_rpatInfoInit(dStage_dt_c* i_stage, void* i_data, int i_num, vo dPath* pPath = pStagePath->m_path; i_stage->setPath2Info(pStagePath); - for (s32 i = 0; i < pStagePath->m_num; pPath++, i++, (void)0) { + for (s32 i = 0; i < pStagePath->num; pPath++, i++, (void)0) { if ((uintptr_t)pPath->m_points >= 0x80000000) { continue; } |
