diff options
Diffstat (limited to 'src/midi.c')
-rw-r--r-- | src/midi.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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: } |