Skip to content

Commit

Permalink
send MIDI data through armed channels to the outside world (#498)
Browse files Browse the repository at this point in the history
  • Loading branch information
gvnnz committed Feb 22, 2024
1 parent a374016 commit a0c1de4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/core/rendering/reactor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,8 @@ void Reactor::processMidiEvent(ID channelId, const MidiEvent& e, bool canRecordA
m_model.swap(model::SwapType::HARD);
}
sendMidiEventToPlugins(ch.shared->midiQueue, e);
if (ch.canSendMidi())
sendMidiToOut(channelId, e, ch.midiChannel->outputFilter, m_kernelMidi); // Also send it back to the outside world
}

/* -------------------------------------------------------------------------- */
Expand Down

0 comments on commit a0c1de4

Please sign in to comment.