remove param

This commit is contained in:
Glenn Maynard
2006-08-21 00:20:14 +00:00
parent 62c114b49e
commit 8980bd6a27
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -112,7 +112,7 @@ int64_t RageSoundManager::GetPosition( const RageSoundBase *pSound ) const
return m_pDriver->GetPosition( pSound ); return m_pDriver->GetPosition( pSound );
} }
void RageSoundManager::Update( float fDeltaTime ) void RageSoundManager::Update()
{ {
FlushPosMapQueue(); FlushPosMapQueue();
+1 -1
View File
@@ -33,7 +33,7 @@ public:
bool GetPlayOnlyCriticalSounds() const { return m_bPlayOnlyCriticalSounds; } bool GetPlayOnlyCriticalSounds() const { return m_bPlayOnlyCriticalSounds; }
void SetPlayOnlyCriticalSounds( bool bPlayOnlyCriticalSounds ); void SetPlayOnlyCriticalSounds( bool bPlayOnlyCriticalSounds );
void Update( float fDeltaTime ); void Update();
void StartMixing( RageSoundBase *snd ); /* used by RageSound */ void StartMixing( RageSoundBase *snd ); /* used by RageSound */
void StopMixing( RageSoundBase *snd ); /* used by RageSound */ void StopMixing( RageSoundBase *snd ); /* used by RageSound */
bool Pause( RageSoundBase *snd, bool bPause ); /* used by RageSound */ bool Pause( RageSoundBase *snd, bool bPause ); /* used by RageSound */