From 3422dc71739fddfc693dcfbcb3ac9f769fc5a1cd Mon Sep 17 00:00:00 2001 From: Alberto Griggio Date: Mon, 5 Mar 2018 17:46:20 +0100 Subject: [PATCH] fixed missing update of the total number of bad pixels found --- rtengine/rawimagesource.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/rtengine/rawimagesource.cc b/rtengine/rawimagesource.cc index da52cf352..893a4a30d 100644 --- a/rtengine/rawimagesource.cc +++ b/rtengine/rawimagesource.cc @@ -1928,6 +1928,7 @@ void RawImageSource::preprocess (const RAWParams &raw, const LensProfParams &le } int n = f.mark(rawData, *bitmapBads); + totBP += n; if (settings->verbose && n > 0) { printf("Marked %d hot pixels from PDAF lines\n", n);