From b918e1cf520070224cc342be8682f34daf0b5666 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sun, 24 Oct 2004 03:06:28 +0000 Subject: [PATCH] RageSoundMixBuffer.h --- stepmania/src/arch/Sound/RageSoundDriver_Generic_Software.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stepmania/src/arch/Sound/RageSoundDriver_Generic_Software.cpp b/stepmania/src/arch/Sound/RageSoundDriver_Generic_Software.cpp index 709c48e820..32e737fa46 100644 --- a/stepmania/src/arch/Sound/RageSoundDriver_Generic_Software.cpp +++ b/stepmania/src/arch/Sound/RageSoundDriver_Generic_Software.cpp @@ -5,6 +5,7 @@ #include "RageSound.h" #include "RageUtil.h" #include "RageSoundManager.h" +#include "RageSoundMixBuffer.h" static const int channels = 2; static const int bytes_per_frame = channels*2; /* 16-bit */ @@ -60,7 +61,7 @@ void RageSound_Generic_Software::Mix( int16_t *buf, int frames, int64_t frameno, ++g_TotalAheadCount; } - static SoundMixBuffer mix; + static RageSoundMixBuffer mix; for( unsigned i = 0; i < ARRAYSIZE(sounds); ++i ) {