Skip to content

Commit

Permalink
Fix LFO rate for square wave. Fixes #38
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron Santos committed Sep 18, 2012
1 parent 2b60b85 commit ed81e18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/minibeast/mbsynth.clj
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
phase-reset (* lfo-arp-sync (+ 1 (* -1 arp-trig)))
LFO (slew (+ (* lfo-sin (sin-osc lfo-rate phase-reset))
(* lfo-saw (lf-saw lfo-rate phase-reset))
(* lfo-square (lf-pulse lfo-square phase-reset))
(* lfo-square (lf-pulse lfo-rate phase-reset))
(* lfo-tri (lf-tri lfo-rate phase-reset))
(* lfo-rand rand-lfo)
(* lfo-slew-rand (slew rand-lfo))) 100 100)
Expand Down

0 comments on commit ed81e18

Please sign in to comment.