MIDI: Fix basic noteon: send correct velocity (#6476)

pull/6444/head^2 0.6.443
Zach DeCook 5 years ago committed by Drashna Jaelre
parent 59d3b37130
commit 009d45d4d7

@ -24,7 +24,7 @@
void process_midi_basic_noteon(uint8_t note)
{
midi_send_noteon(&midi_device, 0, note, 128);
midi_send_noteon(&midi_device, 0, note, 127);
}
void process_midi_basic_noteoff(uint8_t note)

Loading…
Cancel
Save