computerscare-vcv-modules

computerscare modules for VCV Rack
Log | Files | Refs

commit ed71661b78d5e1295861a3a57686b53e38aef8c6
parent 566feaf7551c96fe57cd7ec3b8d9785d7c039ae8
Author: Adam M <[email protected]>
Date:   Thu, 14 Oct 2021 17:32:24 -0500

remove dirtyvalue

Diffstat:
Msrc/Computerscare.hpp | 1-
Msrc/ComputerscarePolyModule.hpp | 1-
2 files changed, 0 insertions(+), 2 deletions(-)

diff --git a/src/Computerscare.hpp b/src/Computerscare.hpp @@ -158,7 +158,6 @@ struct SmallIsoButton : SvgSwitch { } onChange(*(new event::Change())); fb->dirty = true; - dirtyValue = -20.f; lastDisabled = disabled; } diff --git a/src/ComputerscarePolyModule.hpp b/src/ComputerscarePolyModule.hpp @@ -43,7 +43,6 @@ struct TinyChannelsSnapKnob: RoundBlackSnapKnob { int currentSetting = module->params[paramId].getValue();; if (currentSetting != prevSetting) { setSvg(currentSetting == 0 ? autoChannelsSvg : manualChannelsSetSvg); - dirtyValue = -20.f; prevSetting = currentSetting; } }