Skip to content

Commit

Permalink
[ci] Fix minor C++ mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
jcelerier committed Oct 15, 2024
1 parent 30a7e76 commit f42584e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ossia/editor/scenario/time_interval.cpp
Original file line number Diff line number Diff line change
@@ -133,7 +133,7 @@ void time_interval::tick_impl(

if(new_date.impl - 1 > old_date.impl)
{
auto d = ossia::time_value(new_date.impl - 1);
auto d = ossia::time_value{new_date.impl - 1};
const double num_quarters = d.impl / m_quarter_duration;

auto [time, sig] = *ossia::last_before(m_timeSignature, d);

0 comments on commit f42584e

Please sign in to comment.