1
0
Fork 0

Always accept MIDI events in CLAP

Otherwise we may not receive SysEx events.
This commit is contained in:
Robbert van der Helm 2023-01-31 22:20:48 +01:00
parent 5dbc76ef69
commit 6e6f327dc4

View file

@ -2975,11 +2975,9 @@ impl<P: ClapPlugin> Wrapper<P> {
let info = &mut *info;
info.id = 0;
// NOTE: REAPER won't send us SysEx if we don't support the MIDI dialect
// TODO: Implement MPE (would just be a toggle for the plugin to expose it) and MIDI2
info.supported_dialects = CLAP_NOTE_DIALECT_CLAP;
if P::MIDI_INPUT >= MidiConfig::MidiCCs {
info.supported_dialects |= CLAP_NOTE_DIALECT_MIDI;
}
info.supported_dialects = CLAP_NOTE_DIALECT_CLAP | CLAP_NOTE_DIALECT_MIDI;
info.preferred_dialect = CLAP_NOTE_DIALECT_CLAP;
strlcpy(&mut info.name, "Note Input");