From 3f5119868533a716c8f1bb28d109a4329307a030 Mon Sep 17 00:00:00 2001 From: LagoLunatic Date: Mon, 9 Oct 2023 16:27:21 -0400 Subject: [PATCH] Fix a return type --- include/SSystem/SComponent/c_m3d_g_pla.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/SSystem/SComponent/c_m3d_g_pla.h b/include/SSystem/SComponent/c_m3d_g_pla.h index b7f4e88ac..404ddc720 100644 --- a/include/SSystem/SComponent/c_m3d_g_pla.h +++ b/include/SSystem/SComponent/c_m3d_g_pla.h @@ -21,7 +21,7 @@ public: } const cXyz * GetNP() const { return &mNormal; } - f32 getCrossY(const cXyz& i_axis, float* i_value) const { + void getCrossY(const cXyz& i_axis, float* i_value) const { if (!cM3d_IsZero(mNormal.y)) { *i_value = (-mNormal.x * i_axis.x - mNormal.z * i_axis.z -