From: Mark Slee Date: Thu, 31 Oct 2013 04:23:49 +0000 (-0700) Subject: Make hue knob more sensitive X-Git-Url: https://git.piment-noir.org/?p=SugarCubes.git;a=commitdiff_plain;h=e0847dfbbbc978d8bd3ef022dcc2625c5b3ac141 Make hue knob more sensitive --- diff --git a/_MIDI.pde b/_MIDI.pde index a336320..a0031f6 100644 --- a/_MIDI.pde +++ b/_MIDI.pde @@ -447,7 +447,7 @@ public class APC40MidiInput extends GenericDeviceMidiInput { } else { cv = cv - 64; } - val += (cv - 64) / 300.; + val += (cv - 64) / 500.; effects.colorFucker.hueShift.setValue((val+1) % 1); return true; }