Skip to content

Commit 01ab86f

Browse files
author
Brian Sorahan
committed
fix CombC
1 parent 106fea7 commit 01ab86f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

comb.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ func (comb Comb) Rate(rate int8) Input {
4444
case InterpolationLinear:
4545
return UgenInput("CombL", rate, 0, 1, comb.In, comb.MaxDelayTime, comb.DelayTime, comb.DecayTime)
4646
case InterpolationCubic:
47-
return UgenInput("Comb", rate, 0, 1, comb.In, comb.MaxDelayTime, comb.DelayTime, comb.DecayTime)
47+
return UgenInput("CombC", rate, 0, 1, comb.In, comb.MaxDelayTime, comb.DelayTime, comb.DecayTime)
4848
default:
4949
panic(fmt.Errorf("invalid interpolation: %d", comb.Interpolation))
5050
}

0 commit comments

Comments
 (0)