Skip to content

Commit 8359329

Browse files
committed
No need for two As
1 parent d208e3f commit 8359329

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Sources/CSoundpipeAudioKit/Effects/PitchCorrectDSP.mm

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,10 @@ void init(int channelCount, double sampleRate) override {
5050
369.99, // F#/Gb
5151
392.00, // G
5252
415.30, // G#/Ab
53-
440.00 // A
5453
};
5554

56-
pitchcorrect_set_scale_freqs(pitchcorrect_l, scale, 13);
57-
pitchcorrect_set_scale_freqs(pitchcorrect_r, scale, 13);
55+
pitchcorrect_set_scale_freqs(pitchcorrect_l, scale, 12);
56+
pitchcorrect_set_scale_freqs(pitchcorrect_r, scale, 12);
5857
}
5958

6059
void deinit() override {

0 commit comments

Comments
 (0)