Skip to content

Commit

Permalink
bug: Reduce default value of resonance parameters in VA filters
Browse files Browse the repository at this point in the history
  • Loading branch information
madskjeldgaard committed Sep 22, 2021
1 parent 729dbe1 commit 725edb1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions plugins/VADiodeFilter/VADiodeFilter.sc
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
VADiodeFilter : UGen {
*ar { |input, freq=500, res=1, overdrive=0|
*ar { |input, freq=500, res=0.1, overdrive=0|
^this.multiNew('audio', input, freq, res, overdrive);
}

*kr { |input, freq=500, res=1, overdrive=0|
*kr { |input, freq=500, res=0.1, overdrive=0|
^this.multiNew('control', input, freq, res, overdrive);
}

Expand Down
4 changes: 2 additions & 2 deletions plugins/VAKorg35/VAKorg35.sc
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
VAKorg35 : UGen {
*ar { |input, freq=500, res=0.5, overdrive=0, type=0|
*ar { |input, freq=500, res=0.1, overdrive=0, type=0|
^this.multiNew('audio', input, freq, res, overdrive, type);
}

*kr { |input, freq=500, res=0.5, overdrive=0, type=0|
*kr { |input, freq=500, res=0.1, overdrive=0, type=0|
^this.multiNew('control', input, freq, res, overdrive, type);
}

Expand Down

0 comments on commit 725edb1

Please sign in to comment.