MIDI - Don't apply base velocity to all controller values. (#3678)
This commit is contained in:
@@ -129,11 +129,11 @@ void MidiPort::processInEvent( const MidiEvent& event, const MidiTime& time )
|
||||
{
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
if( fixedInputVelocity() >= 0 && inEvent.velocity() > 0 )
|
||||
{
|
||||
inEvent.setVelocity( fixedInputVelocity() );
|
||||
if( fixedInputVelocity() >= 0 && inEvent.velocity() > 0 )
|
||||
{
|
||||
inEvent.setVelocity( fixedInputVelocity() );
|
||||
}
|
||||
}
|
||||
|
||||
m_midiEventProcessor->processInEvent( inEvent, time );
|
||||
|
||||
Reference in New Issue
Block a user