aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea>2005-09-30 22:30:22 +0000
committertma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea>2005-09-30 22:30:22 +0000
commit6d9be1722b2221cae39b389ce218e93d73d99335 (patch)
tree6a8683f6c900225ea06ab21ffe34110fa489e751
parentd2ee75cfa9e34acdd1b3ae253549193eea83e401 (diff)
downloadioquake3-aero-6d9be1722b2221cae39b389ce218e93d73d99335.tar.gz
ioquake3-aero-6d9be1722b2221cae39b389ce218e93d73d99335.zip
* Made the default SDL dma buffer larger
git-svn-id: svn://svn.icculus.org/quake3/trunk@131 edf5b092-35ff-0310-97b2-ce42778d08ea
-rw-r--r--code/unix/sdl_snd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/code/unix/sdl_snd.c b/code/unix/sdl_snd.c
index fe68505..d614c27 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.
{