From 93ccc8d571676ca9756c431f27ee38db85217891 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 24 Mar 2004 06:09:50 +0000 Subject: [PATCH] call RageSound_Generic_Software::Update --- stepmania/src/arch/Sound/RageSoundDriver_Null.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/stepmania/src/arch/Sound/RageSoundDriver_Null.cpp b/stepmania/src/arch/Sound/RageSoundDriver_Null.cpp index 3e43a1aed0..1e4094d904 100644 --- a/stepmania/src/arch/Sound/RageSoundDriver_Null.cpp +++ b/stepmania/src/arch/Sound/RageSoundDriver_Null.cpp @@ -11,10 +11,12 @@ void RageSound_Null::Update( float fDeltaTime ) /* "Play" frames. */ while( last_cursor_pos < GetPosition(NULL)+1024 ) { - int16_t buf[512*channels]; - this->Mix( buf, 512, last_cursor_pos, GetPosition(NULL) ); - last_cursor_pos += 512; + int16_t buf[256*channels]; + this->Mix( buf, 256, last_cursor_pos, GetPosition(NULL) ); + last_cursor_pos += 256; } + + RageSound_Generic_Software::Update( fDeltaTime ); } int64_t RageSound_Null::GetPosition( const RageSoundBase *snd ) const