diff options
| author | Hugo Hromic <hugo.hromic@deri.org> | 2014-01-14 21:51:03 +0000 |
|---|---|---|
| committer | Hugo Hromic <hugo.hromic@deri.org> | 2014-01-14 21:51:03 +0000 |
| commit | eb300bf21730e1e561bdc6b172a5092509c1bb9c (patch) | |
| tree | 7820680458f2d7ece1f5c152db378b751c217784 /RtMidi.cpp | |
| parent | 408610f7b91afb25549369e951a5d899c936fc9a (diff) | |
Added missing SND_SEQ_EVENT_CLOCK event (MIDI Real Time Clock message) for timing ignoring.
Diffstat (limited to 'RtMidi.cpp')
| -rw-r--r-- | RtMidi.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1210,6 +1210,10 @@ extern "C" void *alsaMidiHandler( void *ptr ) if ( !( data->ignoreFlags & 0x02 ) ) doDecode = true; break; + case SND_SEQ_EVENT_CLOCK: // MIDI timing clock + if ( !( data->ignoreFlags & 0x02 ) ) doDecode = true; + break; + case SND_SEQ_EVENT_SENSING: // Active sensing if ( !( data->ignoreFlags & 0x04 ) ) doDecode = true; break; |
