Replace sine loop
This commit is contained in:
parent
8219d5f2b8
commit
97b2c9a2b1
|
@ -147,9 +147,12 @@ impl Plugin for Sine {
|
|||
// This plugin can be either triggered by MIDI or controleld by a parameter
|
||||
let sine = if self.params.use_midi.value {
|
||||
// Act on the next MIDI event
|
||||
'midi_events: loop {
|
||||
match next_event {
|
||||
Some(event) if event.timing() == sample_id as u32 => match event {
|
||||
while let Some(event) = next_event {
|
||||
if event.timing() != sample_id as u32 {
|
||||
break;
|
||||
}
|
||||
|
||||
match event {
|
||||
NoteEvent::NoteOn { note, velocity, .. } => {
|
||||
self.midi_note_id = note;
|
||||
self.midi_note_freq = util::midi_note_to_freq(note);
|
||||
|
@ -164,8 +167,6 @@ impl Plugin for Sine {
|
|||
self.midi_note_gain.set_target(self.sample_rate, pressure);
|
||||
}
|
||||
_ => (),
|
||||
},
|
||||
_ => break 'midi_events,
|
||||
}
|
||||
|
||||
next_event = context.next_event();
|
||||
|
|
Loading…
Reference in a new issue