make things a little quieter (less likely to clip)

This commit is contained in:
Bill Currie 2007-03-25 08:11:52 +00:00 committed by Jeff Teunissen
parent f2d7630ac1
commit 2f7d686a3c

View file

@ -122,8 +122,8 @@ snd_jack_xfer (int endtime)
return;
}
for (i = 0; i < count; i++) {
*output[0]++ = snd_paintbuffer[i].left / 65536.0;
*output[1]++ = snd_paintbuffer[i].right / 65536.0;
*output[0]++ = 0.25 * snd_paintbuffer[i].left / 65536.0;
*output[1]++ = 0.25 * snd_paintbuffer[i].right / 65536.0;
}
}