diff --git a/glm/core/type_mat3x4.inl b/glm/core/type_mat3x4.inl index 5bb9158f..ea23a677 100644 --- a/glm/core/type_mat3x4.inl +++ b/glm/core/type_mat3x4.inl @@ -522,8 +522,7 @@ namespace detail return tmat3x4( m[0] / s, m[1] / s, - m[2] / s, - m[3] / s); + m[2] / s); } template @@ -536,8 +535,7 @@ namespace detail return tmat3x4( s / m[0], s / m[1], - s / m[2], - s / m[3]); + s / m[2]); } // Unary constant operators