commit 3ca79d20565084290fa506f3761ed7da301b6b08 parent bd2b4277108ab74f2a858b8bd749bc6f0912b07c Author: dsp56300 <dsp56300@users.noreply.github.com> Date: Tue, 20 Jul 2021 19:02:15 +0200 fix midi clock not working in single mode Diffstat:
M | source/virusLib/microcontroller.cpp | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/source/virusLib/microcontroller.cpp b/source/virusLib/microcontroller.cpp @@ -169,7 +169,7 @@ bool Microcontroller::sendMIDI(const SMidiEvent& _ev, bool cancelIfFull/* = fals const auto singleMode = m_globalSettings[PLAY_MODE] == PlayModeSingle; - if(singleMode && channel != m_globalSettings[GLOBAL_CHANNEL]) + if(status != 0xf0 && singleMode && channel != m_globalSettings[GLOBAL_CHANNEL]) return true; switch (status)