From 39372b1f2e2abdfb865ad694fca4347f89365719 Mon Sep 17 00:00:00 2001 From: Ingo Date: Sun, 19 Jan 2014 17:37:56 +0100 Subject: [PATCH] Pentax lens focal length shown as 0.00 mm with K-30, Issue 2207 --- rtexif/rtexif.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtexif/rtexif.cc b/rtexif/rtexif.cc index d46bca765..1d3349ac5 100644 --- a/rtexif/rtexif.cc +++ b/rtexif/rtexif.cc @@ -764,7 +764,7 @@ Tag::Tag (TagDirectory* p, FILE* f, int base) offsetFirst = 13; // LensInfo3 else if( strstr(model, "K-5") || strstr(model, "K-r") ) offsetFirst = 12; // LensInfo4 - else if( strstr(model, "K-01") ) + else if( strstr(model, "K-01") || strstr(model, "K-30")) offsetFirst = 15; // LensInfo5 directory = new TagDirectory*[2]; directory[1] = NULL;