From d26df0c44ce56fd79d06daa24e3faa405015428f Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 23 Apr 2003 19:30:12 +0000 Subject: [PATCH] Er. Had this here for a long time and it's what snapshots have been. This seems to keep going back and forth ... --- stepmania/src/arch/Sound/RageSoundDriver_DSound.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/arch/Sound/RageSoundDriver_DSound.cpp b/stepmania/src/arch/Sound/RageSoundDriver_DSound.cpp index c1782098b6..3cf81826f8 100644 --- a/stepmania/src/arch/Sound/RageSoundDriver_DSound.cpp +++ b/stepmania/src/arch/Sound/RageSoundDriver_DSound.cpp @@ -22,7 +22,7 @@ const int samplerate = 44100; /* The total write-ahead. Don't make this *too* high; we fill the entire * buffer when we start playing, so it can cause frame skips. This should be * high enough that sound cards won't skip. */ -const int buffersize_frames = 1024*4; /* in frames */ +const int buffersize_frames = 1024*8; /* in frames */ const int buffersize = buffersize_frames * samplesize; /* in bytes */ const int num_chunks = 8;