Skip to content

Commit

Permalink
Merge branch 'AudioKit:main' into documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
mahal authored Jan 16, 2024
2 parents 017a047 + 453580d commit 03a8dff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ namespace DunneCore

void StereoDelay::setDelayMs(double delayMs)
{
delayLine1.setDelayMs(delayMs);
delayLine2.setDelayMs(delayMs);
delayLine1.setDelayMs(fmax(1.0, delayMs));
delayLine2.setDelayMs(fmax(1.0, delayMs));
}

void StereoDelay::setFeedback(float fraction)
Expand Down
2 changes: 1 addition & 1 deletion Sources/DunneAudioKit/Sampler+SFZ.swift
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ extension SamplerData {
var lowVelocity: MIDIVelocity = 0
var highVelocity: MIDIVelocity = 127
var sample = ""
var loopMode = ""
var loopMode = "no_loop"
var loopStartPoint: Float32 = 0
var loopEndPoint: Float32 = 0

Expand Down

0 comments on commit 03a8dff

Please sign in to comment.