Fix the display strings of the LightSource field.

This commit is contained in:
KAMADA Ken'ichi 2017-07-07 22:20:09 +09:00
parent 9eb8944833
commit d348ceb54b
1 changed files with 5 additions and 5 deletions

View File

@ -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 "),