don't throw in unimplemented process handlers

This commit is contained in:
🪞👃🪞 2024-10-27 03:31:42 +03:00
parent 8d534fc738
commit 205dbef9b0
2 changed files with 2 additions and 2 deletions

View file

@ -4,6 +4,6 @@ impl<E: Engine> Audio for Arranger<E> {
if let Some(ref transport) = self.transport { if let Some(ref transport) = self.transport {
transport.write().unwrap().process(client, scope); transport.write().unwrap().process(client, scope);
} }
todo!("arranger process") Control::Continue
} }
} }

View file

@ -4,7 +4,7 @@ impl<E: Engine> Audio for Sequencer<E> {
if let Some(ref transport) = self.transport { if let Some(ref transport) = self.transport {
transport.write().unwrap().process(client, scope); transport.write().unwrap().process(client, scope);
} }
todo!("sequencer process") Control::Continue
} }
} }