@@ -123,7 +123,8 @@ void CConfig::Load (void)
123123 }
124124 }
125125
126- m_bMIDIThruBlockSpam = m_Properties.GetNumber (" MIDIThruBlockSpam" , 0 ) != 0 ;
126+ m_bMIDIThruIgnoreClock = m_Properties.GetNumber (" MIDIThruIgnoreClock" , 0 ) != 0 ;
127+ m_bMIDIThruIgnoreActiveSensing = m_Properties.GetNumber (" MIDIThruIgnoreActiveSensing" , 0 ) != 0 ;
127128
128129 m_bMIDIRXProgramChange = m_Properties.GetNumber (" MIDIRXProgramChange" , 1 ) != 0 ;
129130 m_bIgnoreAllNotesOff = m_Properties.GetNumber (" IgnoreAllNotesOff" , 0 ) != 0 ;
@@ -235,8 +236,8 @@ void CConfig::Load (void)
235236 if (const u8 *pIP = m_Properties.GetIPAddress (" NetworkDNSServer" )) m_INetworkDNSServer.Set (pIP);
236237 m_bNetworkFTPEnabled = m_Properties.GetNumber (" NetworkFTPEnabled" , 0 ) != 0 ;
237238 if (const u8 *pIP = m_Properties.GetIPAddress (" NetworkSyslogServerIPAddress" )) m_INetworkSyslogServerIPAddress.Set (pIP);
238- m_bUdpMidiEnabled = m_Properties.GetNumber (" UdpMidiEnabled " , 0 ) != 0 ;
239- if (const u8 *pIP = m_Properties.GetIPAddress (" UdpMidiIPAddress " )) m_IUdpMidiIPAddress .Set (pIP);
239+ m_bUDPMIDIEnabled = m_Properties.GetNumber (" UDPMIDIEnabled " , 0 ) != 0 ;
240+ if (const u8 *pIP = m_Properties.GetIPAddress (" UDPMIDIIPAddress " )) m_IUDPMIDIIPAddress .Set (pIP);
240241
241242 m_nMasterVolume = m_Properties.GetNumber (" MasterVolume" , 64 );
242243}
@@ -363,9 +364,14 @@ const char *CConfig::GetMIDIThru2Out (void) const
363364 return m_MIDIThru2Out.c_str ();
364365}
365366
366- bool CConfig::GetMIDIThruBlockSpam (void ) const
367+ bool CConfig::GetMIDIThruIgnoreClock (void ) const
367368{
368- return m_bMIDIThruBlockSpam;
369+ return m_bMIDIThruIgnoreClock;
370+ }
371+
372+ bool CConfig::GetMIDIThruIgnoreActiveSensing (void ) const
373+ {
374+ return m_bMIDIThruIgnoreActiveSensing;
369375}
370376
371377bool CConfig::GetMIDIRXProgramChange (void ) const
@@ -833,12 +839,12 @@ bool CConfig::GetNetworkFTPEnabled (void) const
833839 return m_bNetworkFTPEnabled;
834840}
835841
836- bool CConfig::GetUdpMidiEnabled (void ) const
842+ bool CConfig::GetUDPMIDIEnabled (void ) const
837843{
838- return m_bUdpMidiEnabled ;
844+ return m_bUDPMIDIEnabled ;
839845}
840846
841- const CIPAddress& CConfig::GetUdpMidiIPAddress (void ) const
847+ const CIPAddress& CConfig::GetUDPMIDIIPAddress (void ) const
842848{
843- return m_IUdpMidiIPAddress ;
849+ return m_IUDPMIDIIPAddress ;
844850}
0 commit comments