From be4c642f0c647d58ecaece97a4502536e646be55 Mon Sep 17 00:00:00 2001 From: Oliver Duis Date: Fri, 17 Jun 2011 06:58:26 +0200 Subject: [PATCH] Fixed bug in full image processing, "False color suppression" was always on and set to 1 See issue 752 --- rtengine/rawimagesource.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rtengine/rawimagesource.cc b/rtengine/rawimagesource.cc index 1ba30f933..15e9cd131 100644 --- a/rtengine/rawimagesource.cc +++ b/rtengine/rawimagesource.cc @@ -415,9 +415,9 @@ void RawImageSource::getImage (ColorTemp ctemp, int tran, Imagefloat* image, Pre if (tran & TR_VFLIP) vflip (image); - // Color correction + // Color correction (only when running on full resolution) if (ri->isBayer() && pp.skip==1) - correction_YIQ_LQ (image, pp.skip==1?1:raw.ccSteps); + correction_YIQ_LQ (image, raw.ccSteps); // Applying postmul colorSpaceConversion (image, cmp, embProfile, camProfile, xyz_cam, defGain);