From ce71384029ca6ea2a11a180d8fb23dedb9a2ca4c Mon Sep 17 00:00:00 2001 From: probonopd Date: Mon, 3 Oct 2022 20:15:05 +0200 Subject: [PATCH] IgnoreAllNotesOff [ci skip] --- src/config.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/config.cpp b/src/config.cpp index b38991f..135e2b6 100644 --- a/src/config.cpp +++ b/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;