whew: all 3 mini-apps launch again

This commit is contained in:
🪞👃🪞 2024-11-23 15:38:37 +01:00
parent 6f5c28f671
commit 95dd61811e
4 changed files with 11 additions and 11 deletions

View file

@ -58,16 +58,16 @@ macro_rules! impl_midi_player {
&mut self$(.$field)*.reset
}
fn phrase (&self) -> &Option<(Instant, Option<Arc<RwLock<Phrase>>>)> {
todo!("phrase")
&self$(.$field)*.play_phrase
}
fn phrase_mut (&self) -> &mut Option<(Instant, Option<Arc<RwLock<Phrase>>>)> {
todo!("phrase_mut")
fn phrase_mut (&mut self) -> &mut Option<(Instant, Option<Arc<RwLock<Phrase>>>)> {
&mut self$(.$field)*.play_phrase
}
fn next_phrase (&self) -> &Option<(Instant, Option<Arc<RwLock<Phrase>>>)> {
todo!("next_phrase")
&self$(.$field)*.next_phrase
}
fn next_phrase_mut (&mut self) -> &mut Option<(Instant, Option<Arc<RwLock<Phrase>>>)> {
todo!("next_phrase_mut")
&mut self$(.$field)*.next_phrase
}
}
impl MidiInputApi for $Struct {