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

This commit is contained in:
Zach DeCook 2019-08-06 14:26:28 -04:00 committed by Drashna Jaelre
parent 59d3b37130
commit 009d45d4d7
1 changed files with 1 additions and 1 deletions

View File

@ -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)