Skip to content

Commit e74b177

Browse files
authored
Merge pull request #767 from okyeron/main
Fix for Bass note off
2 parents 043f877 + daa836e commit e74b177

2 files changed

Lines changed: 7 additions & 0 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,3 +66,5 @@ drum_separation_model_output/
6666
ectocore-default/
6767
soxstatic/
6868

69+
zeptocore.uf2
70+
pico-examples

lib/button_handler.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -879,6 +879,11 @@ bool button_handler(ButtonMatrix *bm) {
879879
#ifdef INCLUDE_MIDI
880880
// send out midi notes
881881
MidiOut_off(midiout[mode_buttons16], bm->off[i] - 4);
882+
#endif
883+
#ifdef INCLUDE_SINEBASS
884+
if (mode_buttons16 == MODE_BASS) {
885+
WaveBass_release(wavebass);
886+
}
882887
#endif
883888
}
884889
}

0 commit comments

Comments
 (0)