commit 5bc6e408d5714a6d2060b17b7742b87a34fc2450
parent a5e0e9fec34996a4920b2fa0716c3778b287eeac
Author: Alexandre BIQUE <bique.alexandre@gmail.com>
Date: Sun, 9 Jan 2022 16:46:42 +0100
Fixes #35
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/include/clap/ext/note-ports.h b/include/clap/ext/note-ports.h
@@ -22,7 +22,8 @@ extern "C" {
enum clap_note_dialect {
CLAP_NOTE_DIALECT_CLAP = 1 << 0,
CLAP_NOTE_DIALECT_MIDI = 1 << 1,
- CLAP_NOTE_DIALECT_MIDI2 = 1 << 2,
+ CLAP_NOTE_DIALECT_MIDI_MPE = 1 << 2,
+ CLAP_NOTE_DIALECT_MIDI2 = 1 << 3,
};
typedef struct clap_note_port_info {