Skip to content

Commit

Permalink
Adjust default global effectable volume (#3272)
Browse files Browse the repository at this point in the history
Originally introduced this in PR #1230

Bringing it back as we're always telling people to reduce their song volume to avoid clipping

But was reversed due to the change to the preset loading volume (that's not in this PR)
  • Loading branch information
seangoodvibes authored Jan 12, 2025
1 parent 847ffbd commit c52f81b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/deluge/model/global_effectable/global_effectable.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ void GlobalEffectable::initParams(ParamManager* paramManager) {
unpatchedParams->params[params::UNPATCHED_DELAY_AMOUNT].setCurrentValueBasicForSetup(NEGATIVE_ONE_Q31);
unpatchedParams->params[params::UNPATCHED_REVERB_SEND_AMOUNT].setCurrentValueBasicForSetup(NEGATIVE_ONE_Q31);

unpatchedParams->params[params::UNPATCHED_VOLUME].setCurrentValueBasicForSetup(889516852); // 3/4 of the way up
unpatchedParams->params[params::UNPATCHED_VOLUME].setCurrentValueBasicForSetup(0); // half of the way up
unpatchedParams->params[params::UNPATCHED_SIDECHAIN_VOLUME].setCurrentValueBasicForSetup(NEGATIVE_ONE_Q31);
unpatchedParams->params[params::UNPATCHED_PITCH_ADJUST].setCurrentValueBasicForSetup(0);

Expand Down

0 comments on commit c52f81b

Please sign in to comment.