1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 05:37:44 +00:00

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
parent f23aea0c4b
commit 4d65607649
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 {};