From 6312cfce5854707d078e63d5b0635866ebbc4da1 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 21 Aug 2004 07:06:27 +0000 Subject: [PATCH] bigger fake "mixing buffer" for null sound --- stepmania/src/arch/Sound/RageSoundDriver_Null.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/arch/Sound/RageSoundDriver_Null.cpp b/stepmania/src/arch/Sound/RageSoundDriver_Null.cpp index 713cd7946c..6b50c5db8d 100644 --- a/stepmania/src/arch/Sound/RageSoundDriver_Null.cpp +++ b/stepmania/src/arch/Sound/RageSoundDriver_Null.cpp @@ -9,7 +9,7 @@ const int samplerate = 44100; void RageSound_Null::Update( float fDeltaTime ) { /* "Play" frames. */ - while( last_cursor_pos < GetPosition(NULL)+1024 ) + while( last_cursor_pos < GetPosition(NULL)+1024*4 ) { int16_t buf[256*channels]; this->Mix( buf, 256, last_cursor_pos, GetPosition(NULL) );