From 0148c5a112a4a7b8d1f560c94d81d307fdacd9a6 Mon Sep 17 00:00:00 2001 From: Ingo Weyrich Date: Wed, 16 Dec 2020 12:17:50 +0100 Subject: [PATCH] Raised max ISO to 819200 for better Pentax KP and Pentax K-1 II support --- rtengine/dynamicprofile.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtengine/dynamicprofile.cc b/rtengine/dynamicprofile.cc index 617ec2747..28516a1ee 100644 --- a/rtengine/dynamicprofile.cc +++ b/rtengine/dynamicprofile.cc @@ -33,7 +33,7 @@ using namespace rtengine::procparams; namespace { -const int ISO_MAX = 512000; +const int ISO_MAX = 819200; const double FNUMBER_MAX = 100.0; const double FOCALLEN_MAX = 10000.0; const double SHUTTERSPEED_MAX = 1000.0;