IgnoreAllNotesOff

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

@ -69,7 +69,7 @@ void CConfig::Load (void)
}
m_bMIDIRXProgramChange = m_Properties.GetNumber ("MIDIRXProgramChange", 1) != 0;
m_bIgnoreAllNotesOff = m_Properties.GetNumber ("IgnoreAllNotesOff", 0) != 0;
m_bLCDEnabled = m_Properties.GetNumber ("LCDEnabled", 0) != 0;
m_nLCDPinEnable = m_Properties.GetNumber ("LCDPinEnable", 4);
@ -158,6 +158,11 @@ bool CConfig::GetMIDIRXProgramChange (void) const
return m_bMIDIRXProgramChange;
}
bool CConfig::GetIgnoreAllNotesOff (void) const
{
return m_bIgnoreAllNotesOff;
}
bool CConfig::GetLCDEnabled (void) const
{
return m_bLCDEnabled;

Loading…
Cancel
Save