diff options
author | David Robillard <d@drobilla.net> | 2020-07-25 11:06:47 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-07-25 11:06:47 +0200 |
commit | 001234daeb43b4c54b49ffca527cc92cd4d9b718 (patch) | |
tree | 32e834d7f3df18d8ae1653122073422162d419d5 /plugins/eg-fifths.lv2/fifths.c | |
parent | 6b4cee5bc2338793d2a7419e5113a9b3c99df8e1 (diff) | |
download | lv2-001234daeb43b4c54b49ffca527cc92cd4d9b718.tar.xz |
Revert "Use LV2_ATOM_BODY macros in examples instead of pointer arithmetic"
This reverts commit 3aad5eb1b08ed5c27e60aa36021c4a85ce90c08f, which broke the
example plugins.
Diffstat (limited to 'plugins/eg-fifths.lv2/fifths.c')
-rw-r--r-- | plugins/eg-fifths.lv2/fifths.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/eg-fifths.lv2/fifths.c b/plugins/eg-fifths.lv2/fifths.c index 5782417..0abcfbd 100644 --- a/plugins/eg-fifths.lv2/fifths.c +++ b/plugins/eg-fifths.lv2/fifths.c @@ -128,7 +128,7 @@ run(LV2_Handle instance, // Read incoming events LV2_ATOM_SEQUENCE_FOREACH(self->in_port, ev) { if (ev->body.type == uris->midi_Event) { - const uint8_t* const msg = (const uint8_t*)LV2_ATOM_BODY_CONST(ev); + const uint8_t* const msg = (const uint8_t*)(ev + 1); switch (lv2_midi_message_type(msg)) { case LV2_MIDI_MSG_NOTE_ON: case LV2_MIDI_MSG_NOTE_OFF: |