Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/BALibrary/commit/fbb0acfc94a207b4a0075729baf08cfe8f8b71d3?style=split&whitespace=ignore-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
5 additions and
4 deletions
src/AudioEffectAnalogDelay.cpp
@ -171,16 +171,17 @@ void AudioEffectAnalogDelay::processMidi(int channel, int control, int value)
if ( ( m_midiConfig [ MIDI_DELAY ] [ MIDI_CHANNEL ] = = channel ) & &
if ( ( m_midiConfig [ MIDI_DELAY ] [ MIDI_CHANNEL ] = = channel ) & &
( m_midiConfig [ MIDI_DELAY ] [ MIDI_CONTROL ] = = control ) ) {
( m_midiConfig [ MIDI_DELAY ] [ MIDI_CONTROL ] = = control ) ) {
// Delay
// Delay
Serial . println ( String ( " AudioEffectAnalogDelay::delay: " ) + val ) ;
m_maxDelaySamples = m_memory - > getSlot ( ) - > size ( ) ;
delay ( ( size_t ) ( val * m_maxDelaySamples ) ) ;
Serial . println ( String ( " AudioEffectAnalogDelay::delay: " ) + val + String ( " out of " ) + m_maxDelaySamples ) ;
delay ( ( size_t ) ( val * ( float ) m_maxDelaySamples ) ) ;
return ;
return ;
}
}
if ( ( m_midiConfig [ MIDI_ENABLE ] [ MIDI_CHANNEL ] = = channel ) & &
if ( ( m_midiConfig [ MIDI_ENABLE ] [ MIDI_CHANNEL ] = = channel ) & &
( m_midiConfig [ MIDI_ENABLE ] [ MIDI_CONTROL ] = = control ) ) {
( m_midiConfig [ MIDI_ENABLE ] [ MIDI_CONTROL ] = = control ) ) {
// Enable
// Enable
if ( val > = 65 ) { enable ( ) ; Serial . println ( String ( " AudioEffectAnalogDelay::enable: ON " ) + value ) ; }
if ( value > = 65 ) { enable ( ) ; Serial . println ( String ( " AudioEffectAnalogDelay::enable: ON " ) ) ; }
else { disable ( ) ; Serial . println ( String ( " AudioEffectAnalogDelay::enable: OFF " ) + value ) ; }
else { disable ( ) ; Serial . println ( String ( " AudioEffectAnalogDelay::enable: OFF " ) ) ; }
return ;
return ;
}
}