forked from mirrors/qmk_firmware
MIDI: Fix basic noteon: send correct velocity (#6476)
This commit is contained in:
parent
59d3b37130
commit
009d45d4d7
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue