diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-03-05 11:52:50 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-03-05 11:52:50 +0000 |
| commit | 743a2ad663b954a7009d1417332af0e71169b35f (patch) | |
| tree | 0f838e8fdf57f24b331a133ace23bfcf1af5d975 /src | |
| parent | 1489f3cca423827315ddb1cc77773e7a76b65fd2 (diff) | |
Try again (fix previous).
Diffstat (limited to 'src')
| -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 7395bde2e..53bdb4c79 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 = dcp / ((source * factor()) * 100); + float const pc = dcp * 100 / (source * factor()); description += String::compose (_("DCP will run at %1%% of the source speed."), pc); } } |
