diff options
author | cbdev <cb@cbcdn.com> | 2019-11-22 14:56:36 +0100 |
---|---|---|
committer | cbdev <cb@cbcdn.com> | 2019-11-22 14:56:36 +0100 |
commit | b60c1adbf3c66c42997020539f8bb8a0eb6250c9 (patch) | |
tree | 1cfd74e3ec9039ad203c8d1b1a1c03d63ce9581a /backends | |
parent | 243d176936152bc2691a5594f76583948af70618 (diff) | |
download | midimonster-b60c1adbf3c66c42997020539f8bb8a0eb6250c9.tar.gz midimonster-b60c1adbf3c66c42997020539f8bb8a0eb6250c9.tar.bz2 midimonster-b60c1adbf3c66c42997020539f8bb8a0eb6250c9.zip |
Update button control state on input not output
Diffstat (limited to 'backends')
-rw-r--r-- | backends/maweb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/maweb.c b/backends/maweb.c index 453dfa4..c495512 100644 --- a/backends/maweb.c +++ b/backends/maweb.c @@ -835,10 +835,10 @@ static int maweb_set(instance* inst, size_t num, channel** c, channel_value* v){ } chan->out = v[n].normalised; - //i/o value space separation - chan->in = v[n].normalised; + //i/o value space separation & feedback filtering for faders if(chan->type == exec_fader){ chan->input_blocked = 1; + chan->in = v[n].normalised; } switch(chan->type){ |