From 591d9e4aca602d8da04688d9c2794cd3618b725e Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Fri, 7 Oct 2005 07:12:35 +0000 Subject: [PATCH] fix error --- stepmania/src/RageSoundManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/RageSoundManager.cpp b/stepmania/src/RageSoundManager.cpp index 9d7da2fa64..f58d63220b 100644 --- a/stepmania/src/RageSoundManager.cpp +++ b/stepmania/src/RageSoundManager.cpp @@ -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;