From 679d3a8ba747186188bdfba9989908ddfe640716 Mon Sep 17 00:00:00 2001 From: cutealien Date: Thu, 10 Mar 2022 12:51:10 +0000 Subject: [PATCH] Avoid some more warnings when working with CMatrix4 git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@6304 dfc29bdd-3216-0410-991c-e03cc46cb475 --- include/matrix4.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/matrix4.h b/include/matrix4.h index ebbba58..e879c04 100644 --- a/include/matrix4.h +++ b/include/matrix4.h @@ -1192,15 +1192,15 @@ namespace core template inline void CMatrix4::transformVect( vector3df& vect) const { - f32 vector[3]; + T vector[3]; vector[0] = vect.X*M[0] + vect.Y*M[4] + vect.Z*M[8] + M[12]; vector[1] = vect.X*M[1] + vect.Y*M[5] + vect.Z*M[9] + M[13]; vector[2] = vect.X*M[2] + vect.Y*M[6] + vect.Z*M[10] + M[14]; - vect.X = vector[0]; - vect.Y = vector[1]; - vect.Z = vector[2]; + vect.X = static_cast(vector[0]); + vect.Y = static_cast(vector[1]); + vect.Z = static_cast(vector[2]); } template -- 2.44.0