diff --git a/Engine/source/math/mMatrix.h b/Engine/source/math/mMatrix.h index 0283502b8..57e6b72ae 100644 --- a/Engine/source/math/mMatrix.h +++ b/Engine/source/math/mMatrix.h @@ -1492,7 +1492,6 @@ inline Matrix& Matrix::inverse() // Early out if pivot is 0, return identity matrix. if (std::abs(augmentedMatrix(i, i)) < pivot_eps) { - this->identity(); return *this; }