From 03cb8bda2231490d3a2064742230aa406d228f91 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 19 Oct 2005 11:47:56 +0000 Subject: [PATCH] remove unused --- stepmania/src/RageSound.cpp | 10 ---------- stepmania/src/RageSound.h | 4 ---- 2 files changed, 14 deletions(-) diff --git a/stepmania/src/RageSound.cpp b/stepmania/src/RageSound.cpp index db048499ff..96e3f882e3 100644 --- a/stepmania/src/RageSound.cpp +++ b/stepmania/src/RageSound.cpp @@ -895,16 +895,6 @@ float RageSound::GetAbsoluteVolume() const return f; } -void RageSound::LockSound() -{ - m_Mutex.Lock(); -} - -void RageSound::UnlockSound() -{ - m_Mutex.Unlock(); -} - float RageSound::GetPlaybackRate() const { return float(m_Param.speed_input_samples) / m_Param.speed_output_samples; diff --git a/stepmania/src/RageSound.h b/stepmania/src/RageSound.h index 79566ec8be..3b4aa133ca 100644 --- a/stepmania/src/RageSound.h +++ b/stepmania/src/RageSound.h @@ -134,10 +134,6 @@ public: CString GetLoadedFilePath() const { return m_sFilePath; } bool IsPlaying() const { return m_bPlaying; } - /* Lock and unlock this sound. */ - void LockSound(); - void UnlockSound(); - float GetPlaybackRate() const; RageTimer GetStartTime() const; float GetVolume() const;