add groovebox app its own copy of sequencer innards

This commit is contained in:
🪞👃🪞 2024-12-28 14:03:12 +01:00
parent 51971e4c25
commit 9f739fe040
7 changed files with 240 additions and 150 deletions

View file

@ -34,8 +34,8 @@ impl GrooveboxCli {
let jack = jack.read().unwrap();
let midi_in = jack.register_port("i", MidiIn::default())?;
let midi_out = jack.register_port("o", MidiOut::default())?;
app.sequencer.player.midi_ins.push(midi_in);
app.sequencer.player.midi_outs.push(midi_out);
app.player.midi_ins.push(midi_in);
app.player.midi_outs.push(midi_out);
Ok(app)
})?)?;
Ok(())