Browse Source

Fix syntax

tags/v1.0.0
Andrew Belt 5 years ago
parent
commit
0ae781aa9f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      include/rack0.hpp

+ 1
- 1
include/rack0.hpp View File

@@ -120,7 +120,7 @@ template <class TParamWidget>
DEPRECATED TParamWidget *createParam(math::Vec pos, Module *module, int paramId, float minValue, float maxValue, float defaultValue) {
TParamWidget *o = createParam<TParamWidget>(pos, module, paramId);
if (module) {
module->configParam(paramId, minValue, maxValue, defaultValue)
module->configParam(paramId, minValue, maxValue, defaultValue);
}
return o;
}


Loading…
Cancel
Save