IgnoreAllNotesOff

[ci skip]
pull/366/head
probonopd 3 years ago committed by GitHub
parent ce71384029
commit 70219c1914
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      src/mididevice.cpp

@ -303,7 +303,10 @@ void CMIDIDevice::MIDIMessageHandler (const u8 *pMessage, size_t nLength, unsign
break;
case MIDI_CC_ALL_NOTES_OFF:
m_pSynthesizer->notesOff (pMessage[2], nTG);
if (!m_pConfig->GetIgnoreAllNotesOff ())
{
m_pSynthesizer->notesOff (pMessage[2], nTG);
}
break;
}
break;

Loading…
Cancel
Save