remove RageSoundManager::GetSoundByID

This commit is contained in:
Glenn Maynard
2006-12-23 09:56:18 +00:00
parent cc55d56948
commit 50957c4a21
2 changed files with 0 additions and 14 deletions
-12
View File
@@ -179,18 +179,6 @@ int RageSoundManager::GetUniqueID()
return ++iID;
}
RageSound *RageSoundManager::GetSoundByID( int ID )
{
LockMut( g_SoundManMutex );
/* Find the sound with p.ID. */
map<int,RageSound *>::iterator it;
it = all_sounds.find( ID );
if( it == all_sounds.end() )
return NULL;
return it->second;
}
float RageSoundManager::GetPlayLatency() const
{
if( m_pDriver == NULL )