From 7bfa77f9acf7f6f21789d11516f0ae40dca1de62 Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Thu, 13 Oct 2005 22:10:40 +0000 Subject: [PATCH] mute before starting the sound. Fixes little pops. --- stepmania/src/RageSound.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/RageSound.cpp b/stepmania/src/RageSound.cpp index f99351bd59..db048499ff 100644 --- a/stepmania/src/RageSound.cpp +++ b/stepmania/src/RageSound.cpp @@ -589,11 +589,11 @@ void RageSound::StartPlaying() m_bPlaying = true; - SOUNDMAN->StartMixing( this ); - if( !m_Param.m_bIsCriticalSound && SOUNDMAN->GetPlayOnlyCriticalSounds() ) m_Param.m_Volume = 0; + SOUNDMAN->StartMixing( this ); + // LOG->Trace("StartPlaying %p finished (%s)", this, this->GetLoadedFilePath().c_str()); }