Fix dPnt struct (#2361)

* Fix dPnt struct

* Fix Vec warning
This commit is contained in:
LagoLunatic
2025-03-30 18:45:59 -04:00
committed by GitHub
parent ed42b15988
commit 559d389e3d
38 changed files with 82 additions and 80 deletions
+2 -2
View File
@@ -520,8 +520,8 @@ int daSpinner_c::checkPathMove() {
var_r27--;
}
dStage_dPnt_c* temp_r26 = &mpPathMove->m_points[var_r27];
dStage_dPnt_c* temp_r25 = &mpPathMove->m_points[sp10];
dPnt* temp_r26 = &mpPathMove->m_points[var_r27];
dPnt* temp_r25 = &mpPathMove->m_points[sp10];
cXyz sp50(temp_r25->m_position.x - temp_r26->m_position.x,
temp_r25->m_position.y - temp_r26->m_position.y,
temp_r25->m_position.z - temp_r26->m_position.z);