f_op_actor_mng matching (#2325)

This commit is contained in:
Caroline Madsen
2025-03-12 18:57:14 -04:00
committed by GitHub
parent 854e460a36
commit 3ad60c1b17
4 changed files with 7 additions and 19 deletions
+1 -1
View File
@@ -379,7 +379,7 @@ inline BOOL fopAcM_CULLSIZE_IS_BOX(int i_culltype) {
return (i_culltype >= 0 && i_culltype < 14) || i_culltype == 14;
}
inline const Vec& fopAcM_getCullSizeSphereCenter(const fopAc_ac_c* i_actor) {
inline const cXyz& fopAcM_getCullSizeSphereCenter(const fopAc_ac_c* i_actor) {
return i_actor->cull.sphere.center;
}
+1 -1
View File
@@ -20,7 +20,7 @@ struct mDoLib_clipper {
return mClipper.clip(m, (Vec*)param_1, (Vec*)param_2);
}
static int clip(const Mtx m, Vec param_1, f32 param_2) {
static s32 clip(const Mtx m, Vec param_1, f32 param_2) {
return mClipper.clip(m, param_1, param_2);
}