diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-03-05 10:21:25 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-03-05 10:21:25 +0000 |
| commit | 1489f3cca423827315ddb1cc77773e7a76b65fd2 (patch) | |
| tree | 33776ce9cc48a439f0cb3124f3b2338c4dcbb855 /src/lib | |
| parent | 1aa2f537a0ae714a3a91ca5f477a48f582b3ab72 (diff) | |
Maybe fix sense of note about DCP speed wrt source.
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/util.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/util.cc b/src/lib/util.cc index 71e864ebd..7395bde2e 100644 --- a/src/lib/util.cc +++ b/src/lib/util.cc @@ -971,7 +971,7 @@ FrameRateConversion::FrameRateConversion (float source, int dcp) } if (change_speed) { - float const pc = (source * factor()) * 100 / dcp; + float const pc = dcp / ((source * factor()) * 100); description += String::compose (_("DCP will run at %1%% of the source speed."), pc); } } |
