From bfed0b6f831fffdfcbd594ab563cccc8f2758e19 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Fri, 22 Dec 2006 21:17:34 +0000 Subject: [PATCH] always go into PLAYING --- stepmania/src/arch/Sound/RageSoundDriver_Generic_Software.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/stepmania/src/arch/Sound/RageSoundDriver_Generic_Software.cpp b/stepmania/src/arch/Sound/RageSoundDriver_Generic_Software.cpp index 52b52b7efe..df6eef0224 100644 --- a/stepmania/src/arch/Sound/RageSoundDriver_Generic_Software.cpp +++ b/stepmania/src/arch/Sound/RageSoundDriver_Generic_Software.cpp @@ -383,8 +383,7 @@ void RageSound_Generic_Software::StartMixing( RageSoundBase *pSound ) } } - /* If we hit EOF already, while prebuffering, then go right to STOPPING. */ - s.m_State = ReachedEOF? Sound::STOPPING: Sound::PLAYING; + s.m_State = Sound::PLAYING; // LOG->Trace("StartMixing: (#%i) finished prebuffering(%s) (%p)", i, s.m_pSound->GetLoadedFilePath().c_str(), s.m_pSound ); }