small improvement

This commit is contained in:
lesleyrs
2026-03-15 15:18:02 +01:00
committed by Ben Visness
parent 871bbb2236
commit 661fef0893

View File

@@ -2332,7 +2332,7 @@ static inline HMM_Quat HMM_NormQ(HMM_Quat Quat)
/* NOTE(lcf): Take advantage of SSE implementation in HMM_NormV4 */
HMM_Vec4 Vec = HMM_V4(Quat.X, Quat.Y, Quat.Z, Quat.W);
Vec = HMM_NormV4(Vec);
HMM_Quat Result = HMM_Q(Vec.X, Vec.Y, Vec.Z, Vec.W);
HMM_Quat Result = HMM_QV4(Vec);
return Result;
}