diff --git a/simgear/math/SGMatrix.hxx b/simgear/math/SGMatrix.hxx index 61bdc2a5..5d6e83c9 100644 --- a/simgear/math/SGMatrix.hxx +++ b/simgear/math/SGMatrix.hxx @@ -332,7 +332,7 @@ SGVec4 operator*(const SGMatrix& m, const SGVec4& v) { SGVec4 mv; - mv.v4() = m.m4x4() * v.v4(); + mv.simd4() = m.simd4x4() * v.simd4(); return mv; }