Browse Source

Devin Anderson jackmp-fix-ffado-midi-2.diff patch.

git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@3837 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/v1.9.5
sletz 16 years ago
parent
commit
74b7dd42de
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      common/JackPhysicalMidiOutput.cpp

+ 1
- 2
common/JackPhysicalMidiOutput.cpp View File

@@ -257,8 +257,7 @@ JackPhysicalMidiOutput::Process(jack_nframes_t frames)
// Since we have no time left, we need to put all remaining midi
// events in their appropriate buffers, and send them next period.

for (current_midi_event++; current_midi_event < midi_events;
current_midi_event++) {
for (; current_midi_event < midi_events; current_midi_event++) {
midi_event = &(port_buffer->events[current_midi_event]);
midi_event_buffer = midi_event->GetData(port_buffer);
midi_event_size = midi_event->size;


Loading…
Cancel
Save