fix RageSoundReader_Chain::GetNextSourceFrame

This commit is contained in:
Glenn Maynard
2006-12-09 22:10:17 +00:00
parent 18d44445e3
commit 381fc45cfd
+1 -1
View File
@@ -229,7 +229,7 @@ bool RageSoundReader_Chain::IsStreamingFromDisk() const
bool RageSoundReader_Chain::SetProperty( const RString &sProperty, float fValue )
{
bool bRet = false;
for( unsigned i = 0; i < m_apActiveSounds.size(); )
for( unsigned i = 0; i < m_apActiveSounds.size(); ++i )
{
if( m_apActiveSounds[i].pSound->SetProperty(sProperty, fValue) )
bRet = true;