Fix JACK MIDI dropping events when two events have the same time stamp. (#5994)
This commit is contained in:
@@ -188,7 +188,7 @@ void MidiJack::JackMidiRead(jack_nframes_t nframes)
|
||||
{
|
||||
for(i=0; i<nframes; i++)
|
||||
{
|
||||
if((in_event.time == i) && (event_index < event_count))
|
||||
while((in_event.time == i) && (event_index < event_count))
|
||||
{
|
||||
// lmms is setup to parse bytes coming from a device
|
||||
// parse it byte by byte as it expects
|
||||
|
||||
Reference in New Issue
Block a user