fix error

This commit is contained in:
Chris Danford
2005-10-07 07:12:35 +00:00
parent 8537b95a52
commit 591d9e4aca
+1 -1
View File
@@ -331,7 +331,7 @@ void RageSoundManager::PlayOnce( CString sPath )
void RageSoundManager::SetMixVolume( float fMixVol )
{
ASSERT_M( fMixVol >= 0 && fVolume <= 1, ssprintf("%f",fMixVol) );
ASSERT_M( fMixVol >= 0 && fMixVol <= 1, ssprintf("%f",fMixVol) );
g_SoundManMutex.Lock(); /* lock for access to m_fMixVolume */
m_fMixVolume = fMixVol;