From 6b8c55d76268cba3e1383faa55a48386457c3693 Mon Sep 17 00:00:00 2001 From: havoc Date: Fri, 17 Feb 2006 03:25:31 +0000 Subject: [PATCH] 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 --- snd_oss.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- 2.39.2