summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/dcp_time.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dcp_time.cc b/src/dcp_time.cc
index 19ab2de1..3db449fb 100644
--- a/src/dcp_time.cc
+++ b/src/dcp_time.cc
@@ -291,5 +291,5 @@ Time::as_seconds () const
Time
Time::rebase (int tcr_) const
{
- return Time (h, m, s, rint (float (e) * tcr_ / tcr), tcr_);
+ return Time (h, m, s, floor (float (e) * tcr_ / tcr), tcr_);
}