commit 11317776492c3748d205e664e210152001661163
parent 55fb32b2e3a22ea37ad024968dd83d71545d1877
Author: Adam M <aemalone@gmail.com>
Date: Sat, 16 Oct 2021 09:37:02 -0500
remove redundant module ref in custom CustomBlankExpander ParamQuantity
Diffstat:
1 file changed, 0 insertions(+), 2 deletions(-)
diff --git a/src/ComputerscareBlankExpander.cpp b/src/ComputerscareBlankExpander.cpp
@@ -7,11 +7,9 @@ const std::string clockModeDescriptions[3] = {"Sync\nAnimation will synchronize
struct FrameOffsetParam : ParamQuantity {
- ComputerscareBlankExpander* module;
int numFrames = -1;
void setNumFrames(int num) { numFrames = num; }
std::string getDisplayValueString() override {
- //return &module->params[paramId];
float val = getValue();
return string::f("%i", 1 + mapBlankFrameOffset(val, numFrames));
}