diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-07-19 12:10:37 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-07-19 12:10:37 +0100 |
| commit | c5a18da25dd7bba0f65e00312eabc130d5f66fa9 (patch) | |
| tree | f8ab99b5f7531f8a62760e3a1dc7f7068ae9dd19 /src/lib/writer.cc | |
| parent | ba17803f7e33be2bea1363b5a7115e4713dd5997 (diff) | |
Remove old looping method.
Diffstat (limited to 'src/lib/writer.cc')
| -rw-r--r-- | src/lib/writer.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/writer.cc b/src/lib/writer.cc index b3d2fdb1c..c5360a122 100644 --- a/src/lib/writer.cc +++ b/src/lib/writer.cc @@ -204,9 +204,9 @@ try } lock.lock (); - if (_film->length_with_loop()) { + if (_film->length()) { _job->set_progress ( - float (_full_written + _fake_written + _repeat_written) / _film->time_to_video_frames (_film->length_with_loop()) + float (_full_written + _fake_written + _repeat_written) / _film->time_to_video_frames (_film->length()) ); } |
