mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 23:35:03 +01:00
fix Temporal::Beats::operator*
This commit is contained in:
parent
aa856b509c
commit
8b3e7fea37
1 changed files with 1 additions and 1 deletions
|
|
@ -233,7 +233,7 @@ public:
|
|||
|
||||
template<typename Number>
|
||||
Beats operator*(Number factor) const {
|
||||
return Beats(_beats * factor, _ticks * factor);
|
||||
return ticks ((_beats * PPQN + _ticks) * factor);
|
||||
}
|
||||
|
||||
template<typename Number>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue