From daea87530963212142633e54324ee0707c6e3e23 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 24 May 2007 21:10:32 +0000 Subject: [PATCH] use GetSoundVolume --- stepmania/src/ScreenDebugOverlay.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/ScreenDebugOverlay.cpp b/stepmania/src/ScreenDebugOverlay.cpp index 62a11fa16e..4f61763456 100644 --- a/stepmania/src/ScreenDebugOverlay.cpp +++ b/stepmania/src/ScreenDebugOverlay.cpp @@ -461,7 +461,7 @@ void ChangeVolume( float fDelta ) fVol += fDelta; CLAMP( fVol, 0.0f, 1.0f ); PREFSMAN->m_fSoundVolume.Set( fVol ); - SOUNDMAN->SetMixVolume( PREFSMAN->m_fSoundVolume ); + SOUNDMAN->SetMixVolume( PREFSMAN->GetSoundVolume() ); }