From: havoc Date: Fri, 17 Feb 2006 03:25:31 +0000 (+0000) Subject: changed tryrates array to include 48000, 24000, and 16000 speeds (this should help... X-Git-Tag: xonotic-v0.1.0preview~4320 X-Git-Url: https://git.xonotic.org/?a=commitdiff_plain;h=6b8c55d76268cba3e1383faa55a48386457c3693;p=xonotic%2Fdarkplaces.git changed tryrates array to include 48000, 24000, and 16000 speeds (this should help 48khz AC97 chips) git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@5991 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/snd_oss.c b/snd_oss.c index 9e1711af..f50c321c 100644 --- a/snd_oss.c +++ b/snd_oss.c @@ -35,7 +35,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. int audio_fd; -static int tryrates[] = {44100, 22050, 11025, 8000}; +static int tryrates[] = {44100, 48000, 22050, 24000, 11025, 16000, 8000}; qboolean SNDDMA_Init(void) {