Skip to content

Commit

Permalink
Updated midi cc routine to update screen by default
Browse files Browse the repository at this point in the history
  • Loading branch information
keyth72 committed Dec 29, 2024
1 parent 7675a26 commit 901be70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Software/GuitarPedal/guitar_pedal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@ void HandleMidiMessage(MidiEvent m) {
int effectParamID = activeEffect->GetMappedParameterIDForMidiCC(p.control_number);

if (effectParamID != -1) {
guitarPedalUI.UpdateActiveEffectParameterValue(effectParamID, false);
guitarPedalUI.UpdateActiveEffectParameterValue(effectParamID, true);
}
}
break;
Expand Down

0 comments on commit 901be70

Please sign in to comment.