From 8d17aa29baf0b33229dbdd82d8d5f6cbe3fe0240 Mon Sep 17 00:00:00 2001 From: gramanas Date: Sun, 26 Nov 2023 16:29:00 +0200 Subject: Many changes! --- src/sound.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/sound.c') 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 ); -- cgit v1.2.3