mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-07 04:06:45 +01:00
whew: all 3 mini-apps launch again
This commit is contained in:
parent
6f5c28f671
commit
95dd61811e
4 changed files with 11 additions and 11 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue