From 4d162fc4d97247e99de548b310bf4403ed6e7f70 Mon Sep 17 00:00:00 2001 From: c vw Date: Tue, 21 Sep 2021 20:08:43 +0200 Subject: [PATCH] smoother rounding for MIDI controller values --- midi2.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/midi2.c b/midi2.c index be8ca9e..d052f7f 100644 --- a/midi2.c +++ b/midi2.c @@ -61,8 +61,8 @@ void NewMidiEvent(enum MIDIevent event, int channel, int note, int val) { break; case MIDI_CTRL: if (desc->type == MIDI_KNOB) { - // normalize value to range 0 - 100 - new = (val*100)/127; + // normalize value to range 0 - 100, round to nearest + new = (val*100+63)/127; DoTheMidi(desc->action, desc->type, new); } else if (desc->type == MIDI_WHEEL) { if (desc->delay > 0 && last_wheel_action == desc->action) { @@ -90,8 +90,8 @@ void NewMidiEvent(enum MIDIevent event, int channel, int note, int val) { break; case MIDI_PITCH: if (desc->type == MIDI_KNOB) { - // normalize value to 0 - 100 - new = (val*100)/16383; + // normalize value to 0 - 100, round to nearest + new = (val*100+8191)/16383; DoTheMidi(desc->action, desc->type, new); } break; -- 2.45.2