From 51821bb2e9b67fc70486a4ee8dcbc88971adc3b6 Mon Sep 17 00:00:00 2001 From: gramanas Date: Thu, 14 Sep 2023 14:37:13 +0300 Subject: More cleanup --- src/midi.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/midi.c') 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: } -- cgit v1.2.3