Fixed ticket 169, parameter not used for mat division

This commit is contained in:
Christophe Riccio 2012-02-19 22:43:40 +00:00
parent edccfa24b9
commit 8537e33b8d

View File

@ -157,7 +157,7 @@ GLM_FUNC_QUALIFIER fmat4x4SIMD & fmat4x4SIMD::operator/=
)
{
__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;
}