summaryrefslogtreecommitdiffstats
path: root/src/midi.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/midi.c')
-rw-r--r--src/midi.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/midi.c b/src/midi.c
index b53f365..c01b803 100644
--- a/src/midi.c
+++ b/src/midi.c
@@ -53,7 +53,7 @@ void midi_decode(uint32_t msg, synth_t * synth) {
break;
case 4:
cc_step(&synth->cc_cutoff, x);
- synth->cutoff = synth->cutoff + (x * (10 * log10(synth->cutoff)));
+ //synth->cutoff = synth->cutoff + (x * (10 * log10(synth->cutoff)));
break;
case 5:
cc_step(&synth->cc_resonance, x);
@@ -71,7 +71,6 @@ void midi_decode(uint32_t msg, synth_t * synth) {
synth->filter = x - 1;
break;
case 29:
- synth->multi = x - 1;
break;
default:
}