Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update DPF
  • Loading branch information
falkTX committed Jan 3, 2022
1 parent 00f00e0 commit 39ca293
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dpf
Submodule dpf updated 103 files
6 changes: 3 additions & 3 deletions plugins/Kars/DistrhoPluginKars.cpp
Expand Up @@ -44,15 +44,15 @@ void DistrhoPluginKars::initParameter(uint32_t index, Parameter& parameter)
switch (index)
{
case paramSustain:
parameter.hints = kParameterIsAutomable|kParameterIsBoolean;
parameter.hints = kParameterIsAutomatable|kParameterIsBoolean;
parameter.name = "Sustain";
parameter.symbol = "sustain";
parameter.ranges.def = 0.0f;
parameter.ranges.min = 0.0f;
parameter.ranges.max = 1.0f;
break;
case paramRelease:
parameter.hints = kParameterIsAutomable;
parameter.hints = kParameterIsAutomatable;
parameter.name = "Release";
parameter.symbol = "release";
parameter.unit = "s";
Expand All @@ -61,7 +61,7 @@ void DistrhoPluginKars::initParameter(uint32_t index, Parameter& parameter)
parameter.ranges.max = 5.0f;
break;
case paramVolume:
parameter.hints = kParameterIsAutomable;
parameter.hints = kParameterIsAutomatable;
parameter.name = "Volume";
parameter.symbol = "volume";
parameter.unit = "%";
Expand Down

0 comments on commit 39ca293

Please sign in to comment.