Skip to content

Commit

Permalink
Fixed incorrect ISO for some films
Browse files Browse the repository at this point in the history
  • Loading branch information
vodemn committed May 1, 2023
1 parent d346e70 commit d3512fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/data/models/film.dart
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ class FomapanFilm extends Film {
: a = 1.5,
b = 4.5,
c = 3,
super('Fomapan CREATIVE 200', 400);
super('Fomapan CREATIVE 200', 200);

/// https://www.foma.cz/en/fomapan-100
const FomapanFilm.action400()
Expand Down Expand Up @@ -185,7 +185,7 @@ class IlfordFilm extends Film {
/// https://www.ilfordphoto.com/amfile/file/download/file/1959/product/697/
const IlfordFilm.pan400()
: reciprocityPower = 1.30,
super('Kentemere 400', 100);
super('Kentemere 400', 400);

@override
double reciprocityFormula(double t) => pow(t, reciprocityPower).toDouble();
Expand Down

0 comments on commit d3512fa

Please sign in to comment.