Browse Source

Fixed matrix division

Christophe Riccio 14 years ago
parent
commit
3def64b49b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      glm/gtx/simd_mat4.inl

+ 1 - 1
glm/gtx/simd_mat4.inl

@@ -157,7 +157,7 @@ namespace detail
 	)
     {
 		__m128 Inv[4];
-		sse_inverse_ps(&this->Data[0].Data, Inv);
+		sse_inverse_ps(&m.Data[0].Data, Inv);
 		sse_mul_ps(&this->Data[0].Data, Inv, &this->Data[0].Data);
         return *this;
     }