summaryrefslogtreecommitdiff
path: root/src/lib/writer.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-07-01 00:36:50 +0100
committerCarl Hetherington <cth@carlh.net>2015-07-01 00:36:50 +0100
commitf2577fdda97dfc31177cc141f03dbcda970d9bc4 (patch)
tree5c2a047d70633b6208394d5d726568b3f38f71b6 /src/lib/writer.cc
parente018270ed19d893fdc339052b1b120988d0e9a7e (diff)
Fix progress reporting when repeating frames.l
Diffstat (limited to 'src/lib/writer.cc')
-rw-r--r--src/lib/writer.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/writer.cc b/src/lib/writer.cc
index e911c3720..ff6e4f63c 100644
--- a/src/lib/writer.cc
+++ b/src/lib/writer.cc
@@ -404,7 +404,7 @@ try
total *= 2;
}
if (total) {
- job->set_progress (float (_full_written + _fake_written) / total);
+ job->set_progress (float (_full_written + _fake_written + _repeat_written) / total);
}
}