Removed warning when Matrix4 is not invertible

Former-commit-id: d16c6153dfafadc628cb9af9e4ed707045833616
This commit is contained in:
Lynix 2013-08-22 10:50:39 +02:00
parent 198d13be20
commit 5d0ed4f27c
1 changed files with 0 additions and 6 deletions

View File

@ -322,10 +322,7 @@ bool NzMatrix4<T>::GetInverse(NzMatrix4* dest) const
return true;
}
else
{
NazaraError("Matrix has no inverse");
return false;
}
}
template<typename T>
@ -421,10 +418,7 @@ bool NzMatrix4<T>::GetInverseAffine(NzMatrix4* dest) const
return true;
}
else
{
NazaraError("Matrix has no inverse");
return false;
}
}
template<typename T>