Skip to content

Commit

Permalink
Update EGDescription.h
Browse files Browse the repository at this point in the history
Incorrect default value for ccSustain fixed
  • Loading branch information
PythonBlue committed Oct 3, 2023
1 parent 25a8637 commit 49980a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sfizz/EGDescription.h
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ struct EGDescription {
CCMap<ModifierCurvePair<float>> ccHold { ModifierCurvePair<float>{ Default::egTime, Default::curveCC } };
CCMap<ModifierCurvePair<float>> ccRelease { ModifierCurvePair<float>{ Default::egTime, Default::curveCC } };
CCMap<float> ccStart;
CCMap<ModifierCurvePair<float>> ccSustain { ModifierCurvePair<float>{ Default::egSustain, Default::curveCC } };
CCMap<ModifierCurvePair<float>> ccSustain { ModifierCurvePair<float>{ Default::egPercent, Default::curveCC } };
//CCMap<float> ccAttack;
//CCMap<float> ccDecay;
//CCMap<float> ccDelay;
Expand Down

0 comments on commit 49980a2

Please sign in to comment.