Skip to content

Commit

Permalink
fix log scale HOST side
Browse files Browse the repository at this point in the history
  • Loading branch information
alcomposer committed Aug 3, 2021
1 parent ffe7a81 commit 9a16da3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fabricDSP.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -119,15 +119,15 @@ void fabricDSP::initParameter(uint32_t index, Parameter &parameter)
parameter.hints = kParameterIsAutomable | kParameterIsLogarithmic;
parameter.name = "Length";
parameter.symbol = "LENGTH";
parameter.ranges.min = 0.0f; //Milliseconds
parameter.ranges.min = 0.1f; //Milliseconds
parameter.ranges.max = 10000.0f;
parameter.ranges.def = 100.f;
break;
case id_spray:
parameter.hints = kParameterIsAutomable | kParameterIsLogarithmic;
parameter.name = "Spray";
parameter.symbol = "SPRAY";
parameter.ranges.min = 0.0f; //Milliseconds
parameter.ranges.min = 0.0001f; //Milliseconds
parameter.ranges.max = 10000.0f;
parameter.ranges.def = 100.f;
break;
Expand Down

0 comments on commit 9a16da3

Please sign in to comment.