diff options
author | Vitaly Novichkov <admin@wohlnet.ru> | 2018-06-22 23:39:30 +0300 |
---|---|---|
committer | Vitaly Novichkov <admin@wohlnet.ru> | 2018-06-22 23:39:30 +0300 |
commit | 9c69b10a7a7e7de196db45ab8f39e8be014e2fba (patch) | |
tree | 1ec5a2991af8ee08619a9765d3d516f88bdb09ba /src/adlmidi_sequencer.cpp | |
parent | b12d83a20db8c3b7bcf5d94d0ae19ab28df3ca82 (diff) | |
parent | de7550a4cc643b37449eb791f09b625bf1af17fb (diff) | |
download | libADLMIDI-9c69b10a7a7e7de196db45ab8f39e8be014e2fba.tar.gz libADLMIDI-9c69b10a7a7e7de196db45ab8f39e8be014e2fba.tar.bz2 libADLMIDI-9c69b10a7a7e7de196db45ab8f39e8be014e2fba.zip |
Merge SysEx support branch and now we have experimental SysEx support!
Diffstat (limited to 'src/adlmidi_sequencer.cpp')
-rw-r--r-- | src/adlmidi_sequencer.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/adlmidi_sequencer.cpp b/src/adlmidi_sequencer.cpp index fcc1380..b8bf3dd 100644 --- a/src/adlmidi_sequencer.cpp +++ b/src/adlmidi_sequencer.cpp @@ -79,10 +79,7 @@ static void rtPitchBend(void *userdata, uint8_t channel, uint8_t msb, uint8_t ls static void rtSysEx(void *userdata, const uint8_t *msg, size_t size) { MIDIplay *context = reinterpret_cast<MIDIplay *>(userdata); - ADL_UNUSED(context); - ADL_UNUSED(msg); - ADL_UNUSED(size); - /* TODO: pass SysEx HERE! */ + context->realTime_SysEx(msg, size); } |