Skip to content

Commit

Permalink
Updted int range
Browse files Browse the repository at this point in the history
  • Loading branch information
medcelerate committed Jun 22, 2024
1 parent 662b276 commit dc3d7e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FFGLTouchEngine/src/TouchEngine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -619,7 +619,7 @@ void FFGLTouchEngine::ConstructBaseParameters() {
for (int i = MaxParamsByType + OffsetParamsByType; i < (MaxParamsByType * 2) + OffsetParamsByType; i++)
{
SetParamInfof(i, (std::string("Parameter") + std::to_string(i)).c_str(), FF_TYPE_INTEGER);
SetParamRange(i, 0, 1000);
SetParamRange(i, -1000, 1000);
SetParamVisibility(i, false, false);
}

Expand Down

0 comments on commit dc3d7e2

Please sign in to comment.