LibDSP: Remove Transport's time counter reference API

This is what the old Transport in Piano had, but as everyone just
references Transport directly, there's no need for it anymore.
This commit is contained in:
kleines Filmröllchen 2022-05-11 22:01:36 +02:00 committed by Linus Groh
commit 4d65607649
Notes: sideshowbarker 2024-07-17 10:55:28 +09:00
2 changed files with 3 additions and 2 deletions

View file

@ -27,7 +27,7 @@ Track::Track(u32 const& time)
void Track::fill_sample(Sample& sample)
{
m_temporary_transport->time() = m_time;
m_temporary_transport->set_time(m_time);
auto playing_notes = LibDSP::RollNotes {};