diff --git a/rtengine/iptransform.cc b/rtengine/iptransform.cc index ea96f9608..a2befcd70 100644 --- a/rtengine/iptransform.cc +++ b/rtengine/iptransform.cc @@ -1546,7 +1546,15 @@ bool ImProcFunctions::needsTransform (int oW, int oH, int rawRotationDeg, const std::unique_ptr pLCPMap = LFDatabase::getInstance()->findModifier(params->lensProf, metadata, oW, oH, params->coarse, rawRotationDeg); needsLf = pLCPMap.get(); } - return needsCA () || needsDistortion () || needsRotation () || needsPerspective () || needsGradient () || needsPCVignetting () || needsVignetting () || needsLCP() || needsLf; + return needsCA () || + needsDistortion () || + needsRotation () || + needsPerspective () || + needsGradient () || + needsPCVignetting () || + needsVignetting () || + needsLCP() || + needsLf; }