From 8980bd6a273c4a7080f496c02378b254453024dc Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Mon, 21 Aug 2006 00:20:14 +0000 Subject: [PATCH] remove param --- stepmania/src/RageSoundManager.cpp | 2 +- stepmania/src/RageSoundManager.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/RageSoundManager.cpp b/stepmania/src/RageSoundManager.cpp index deb6112e41..f63a89a024 100644 --- a/stepmania/src/RageSoundManager.cpp +++ b/stepmania/src/RageSoundManager.cpp @@ -112,7 +112,7 @@ int64_t RageSoundManager::GetPosition( const RageSoundBase *pSound ) const return m_pDriver->GetPosition( pSound ); } -void RageSoundManager::Update( float fDeltaTime ) +void RageSoundManager::Update() { FlushPosMapQueue(); diff --git a/stepmania/src/RageSoundManager.h b/stepmania/src/RageSoundManager.h index 8575e61b1d..4e42436de9 100644 --- a/stepmania/src/RageSoundManager.h +++ b/stepmania/src/RageSoundManager.h @@ -33,7 +33,7 @@ public: bool GetPlayOnlyCriticalSounds() const { return m_bPlayOnlyCriticalSounds; } void SetPlayOnlyCriticalSounds( bool bPlayOnlyCriticalSounds ); - void Update( float fDeltaTime ); + void Update(); void StartMixing( RageSoundBase *snd ); /* used by RageSound */ void StopMixing( RageSoundBase *snd ); /* used by RageSound */ bool Pause( RageSoundBase *snd, bool bPause ); /* used by RageSound */