From d348ceb54bfb63920b96a75229d311ab8d68cfa6 Mon Sep 17 00:00:00 2001 From: KAMADA Ken'ichi Date: Fri, 7 Jul 2017 22:20:09 +0900 Subject: [PATCH] Fix the display strings of the LightSource field. --- src/tag.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/tag.rs b/src/tag.rs index c7f3584..5a0ff22 100644 --- a/src/tag.rs +++ b/src/tag.rs @@ -745,12 +745,12 @@ fn d_lightsrc(w: &mut fmt::Write, value: &Value) -> fmt::Result { Some(15) => "white fluorescent (WW 3250-3800K)", Some(16) => "warm white fluorescent (L 2600-3250K)", Some(17) => "standard light A", - Some(18) => "standard light A", - Some(19) => "standard light A", + Some(18) => "standard light B", + Some(19) => "standard light C", Some(20) => "D55", - Some(21) => "D55", - Some(22) => "D55", - Some(23) => "D55", + Some(21) => "D65", + Some(22) => "D75", + Some(23) => "D50", Some(24) => "ISO studio tungsten", Some(255) => "other", _ => return d_unknown(w, value, "unknown light source "),