1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-04 03:40:07 +00:00

Resolve blank midi timestamp problem

This commit is contained in:
cesare 2018-06-22 09:54:57 +01:00 committed by hogliux
parent 4d505346cd
commit aa3bd3e7e7

View file

@ -93,7 +93,7 @@ public:
if (expectedLength == currentMessageLen)
{
callback.handleIncomingMidiMessage (input, MidiMessage (currentMessage, expectedLength));
callback.handleIncomingMidiMessage (input, MidiMessage (currentMessage, expectedLength, time));
currentMessageLen = 1; // reset, but leave the first byte to use as the running status byte
}
}