Skip to content

Commit

Permalink
Fixing room range for reverb module
Browse files Browse the repository at this point in the history
Went to 0, should only go to 2
  • Loading branch information
Rcomian committed Nov 4, 2018
1 parent 0d685b4 commit 1d2afad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/GVerbModule.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ struct GVerbModuleWidget : ModuleWidget {
GVerbModuleWidget(GVerbModule *module) : ModuleWidget(module) {
setPanel(SVG::load(assetPlugin(plugin, "res/Reverb.svg")));

addParam(ParamWidget::create<Davies1900hLargeWhiteKnob>(Vec(50, 44), module, GVerbModule::ROOM_SIZE_PARAM, 0.0, 300.0, 150.0));
addParam(ParamWidget::create<Davies1900hLargeWhiteKnob>(Vec(50, 44), module, GVerbModule::ROOM_SIZE_PARAM, 2.0, 300.0, 150.0));
addParam(ParamWidget::create<Davies1900hLargeWhiteKnob>(Vec(50, 115), module, GVerbModule::DAMPING_PARAM, 0.0, 1.0, 0.95));

addParam(ParamWidget::create<Davies1900hWhiteKnob>(Vec(127, 60), module, GVerbModule::REV_TIME_PARAM, 0.0, 10000.0, 5000.0));
Expand Down

0 comments on commit 1d2afad

Please sign in to comment.