summaryrefslogtreecommitdiff
path: root/src/SSystem
diff options
context:
space:
mode:
authorLagoLunatic <LagoLunatic@users.noreply.github.com>2024-04-18 23:16:38 -0400
committerLagoLunatic <LagoLunatic@users.noreply.github.com>2024-04-18 23:16:38 -0400
commit459cf6caa71ae35132ba29a5b1888080cd304ccd (patch)
tree6472e46144595dc176be026d2689e718e4a59620 /src/SSystem
parentc93901ce2cc457ffb065f563c3eb33664a5fd9c8 (diff)
clean up some inline parameters
Diffstat (limited to 'src/SSystem')
-rw-r--r--src/SSystem/SComponent/c_bg_w.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SSystem/SComponent/c_bg_w.cpp b/src/SSystem/SComponent/c_bg_w.cpp
index 83e6626b..bac3132c 100644
--- a/src/SSystem/SComponent/c_bg_w.cpp
+++ b/src/SSystem/SComponent/c_bg_w.cpp
@@ -113,7 +113,7 @@ void cBgW::CalcPlane() {
} else {
for (s32 i = 0; i < pm_bgd->m_t_num; i++) {
cBgW_TriElm* tri_elm = &pm_tri[i];
- cM3d_CalcPla(&pm_vtx_tbl[t_tbl[i].vtx0], &pm_vtx_tbl[t_tbl[i].vtx1], &pm_vtx_tbl[t_tbl[i].vtx2], &tri_elm->m_plane.mNormal, &tri_elm->m_plane.mD);
+ cM3d_CalcPla(&pm_vtx_tbl[t_tbl[i].vtx0], &pm_vtx_tbl[t_tbl[i].vtx1], &pm_vtx_tbl[t_tbl[i].vtx2], tri_elm->m_plane.GetNP(), &tri_elm->m_plane.mD);
}
}
}