From f0f72b313236b3cd8793e6fe7487094d9a04694a Mon Sep 17 00:00:00 2001 From: voidshine Date: Sat, 17 Sep 2022 11:29:41 -0700 Subject: Fix MIDI note-on events being converted to note-off events Update documentation with note about MIDI velocity interpretation --- core/os/midi_driver.cpp | 5 ----- 1 file changed, 5 deletions(-) (limited to 'core/os/midi_driver.cpp') diff --git a/core/os/midi_driver.cpp b/core/os/midi_driver.cpp index 410b62068a..79eef95ef2 100644 --- a/core/os/midi_driver.cpp +++ b/core/os/midi_driver.cpp @@ -86,11 +86,6 @@ void MIDIDriver::receive_input_packet(uint64_t timestamp, uint8_t *data, uint32_ if (length >= 2 + param_position) { event->set_pitch(data[param_position]); event->set_velocity(data[param_position + 1]); - - if (event->get_message() == MIDIMessage::NOTE_ON && event->get_velocity() == 0) { - // https://www.midi.org/forum/228-writing-midi-software-send-note-off,-or-zero-velocity-note-on - event->set_message(MIDIMessage::NOTE_OFF); - } } break; -- cgit v1.2.3