From 1d2afad1badfe36783d12d9fb7c2330d7517fb2c Mon Sep 17 00:00:00 2001 From: Jim Tupper Date: Sun, 4 Nov 2018 10:55:26 +0000 Subject: [PATCH] Fixing room range for reverb module Went to 0, should only go to 2 --- src/GVerbModule.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GVerbModule.cpp b/src/GVerbModule.cpp index 73394f3..1393fde 100644 --- a/src/GVerbModule.cpp +++ b/src/GVerbModule.cpp @@ -236,7 +236,7 @@ struct GVerbModuleWidget : ModuleWidget { GVerbModuleWidget(GVerbModule *module) : ModuleWidget(module) { setPanel(SVG::load(assetPlugin(plugin, "res/Reverb.svg"))); - addParam(ParamWidget::create(Vec(50, 44), module, GVerbModule::ROOM_SIZE_PARAM, 0.0, 300.0, 150.0)); + addParam(ParamWidget::create(Vec(50, 44), module, GVerbModule::ROOM_SIZE_PARAM, 2.0, 300.0, 150.0)); addParam(ParamWidget::create(Vec(50, 115), module, GVerbModule::DAMPING_PARAM, 0.0, 1.0, 0.95)); addParam(ParamWidget::create(Vec(127, 60), module, GVerbModule::REV_TIME_PARAM, 0.0, 10000.0, 5000.0));