From d0b34a3234e91e07ef214fef2a0678c32833bbe6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Batty=C3=A1nyi=20D=C3=A1niel?= <86350313+LoKolbasz@users.noreply.github.com> Date: Tue, 12 Sep 2023 18:19:51 +0200 Subject: [PATCH] Fixed crop mode checking Me make dumb mistake in prev. commit sry. --- rtengine/dcraw.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtengine/dcraw.cc b/rtengine/dcraw.cc index 5e3eafbd0..70e18ad86 100644 --- a/rtengine/dcraw.cc +++ b/rtengine/dcraw.cc @@ -10159,7 +10159,7 @@ canon_a5: } else if (!strcmp(model, "X-Pro3") || !strcmp(model, "X-T3") || !strcmp(model, "X-T30") || !strcmp(model, "X-T4") || !strcmp(model, "X100V") || !strcmp(model, "X-S10")) { raw_width = 6384; // RT raw_height = 4182; // RT - if (read_crop.crop_mode != CropMode::NA) { // RT + if (read_crop.crop_mode == CropMode::NA) { // RT width = raw_width; // RT height = raw_height; // RT } // RT