[Reverse Engineering] remove unnecessary Boolean comparisons

This commit is contained in:
Uwe
2022-06-19 17:07:02 +02:00
parent 9fcb98d9c6
commit db9aeefea1

View File

@@ -589,7 +589,7 @@ void ParameterCorrection::CalcEigenvectors()
bool ParameterCorrection::DoInitialParameterCorrection(double fSizeFactor)
{
// if directions are not given, calculate yourself
if (_bGetUVDir == false)
if (!_bGetUVDir)
CalcEigenvectors();
if (!GetUVParameters(fSizeFactor))
return false;