remove GetVolume

This commit is contained in:
Glenn Maynard
2005-10-23 07:05:33 +00:00
parent 8b34d6eef8
commit 7a67264ece
2 changed files with 0 additions and 7 deletions
-5
View File
@@ -883,11 +883,6 @@ void RageSoundParams::SetPlaybackRate( float fSpeed )
}
}
float RageSound::GetVolume() const
{
return m_Param.m_Volume;
}
float RageSound::GetAbsoluteVolume() const
{
float f = m_Param.m_Volume;
-2
View File
@@ -21,7 +21,6 @@ public:
virtual int GetPCM( char *buffer, int size, int64_t frameno ) = 0;
virtual int GetSampleRate() const = 0;
virtual RageTimer GetStartTime() const { return RageZeroTimer; }
virtual float GetVolume() const = 0;
virtual float GetAbsoluteVolume() const = 0;
virtual int GetID() const = 0;
virtual CString GetLoadedFilePath() const = 0;
@@ -136,7 +135,6 @@ public:
float GetPlaybackRate() const;
RageTimer GetStartTime() const;
float GetVolume() const;
float GetAbsoluteVolume() const; // factors in SOUNDMAN->GetMixVolume()
int GetID() const { return m_iID; }
void SetParams( const RageSoundParams &p );