Skip to content

Commit

Permalink
Merge pull request #7 from ywwg/rryan-features_effects
Browse files Browse the repository at this point in the history
In the echo effect, pingpong should be off by default.
  • Loading branch information
rryan committed Jan 19, 2014
2 parents 280ba59 + ae889e0 commit ee9a29f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/effects/native/echoeffect.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ EffectManifest EchoEffect::getManifest() {
time->setValueHint(EffectManifestParameter::VALUE_FLOAT);
time->setSemanticHint(EffectManifestParameter::SEMANTIC_UNKNOWN);
time->setUnitsHint(EffectManifestParameter::UNITS_UNKNOWN);
time->setMinimum(0.00);
time->setDefault(0.25);
time->setMinimum(0.0);
time->setDefault(0.0);
time->setMaximum(1.0);

return manifest;
Expand Down

0 comments on commit ee9a29f

Please sign in to comment.