summaryrefslogtreecommitdiffstats
path: root/src/sound.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/sound.c')
-rw-r--r--src/sound.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sound.c b/src/sound.c
index 49de899..aaffd13 100644
--- a/src/sound.c
+++ b/src/sound.c
@@ -36,7 +36,7 @@ init_sound(synth_t * synth, PaStreamCallback *streamCallback)
&outputParameters,
SAMPLE_RATE,
FRAMES_PER_BUFFER,
- paClipOff, /* we won't output out of range samples so don't bother clipping them */
+ paClipOff | paDitherOff, /* we won't output out of range samples so don't bother clipping them */
streamCallback,
synth );