From 6797dcc7052c411bf2fee7080e65ea50c922900e Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Fri, 30 Sep 2005 22:30:22 +0000 Subject: [PATCH] * Made the default SDL dma buffer larger --- code/unix/sdl_snd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/unix/sdl_snd.c b/code/unix/sdl_snd.c index fe68505b..d614c273 100644 --- a/code/unix/sdl_snd.c +++ b/code/unix/sdl_snd.c @@ -233,7 +233,7 @@ qboolean SNDDMA_Init(void) // reasonable...this is why I let the user override. tmp = sdlmixsamps->value; if (!tmp) - tmp = (obtained.samples * obtained.channels) * 4; + tmp = (obtained.samples * obtained.channels) * 10; if (tmp & (tmp - 1)) // not a power of two? Seems to confuse something. {