diff --git a/stepmania/src/RageSoundReader_Chain.cpp b/stepmania/src/RageSoundReader_Chain.cpp index 69c4b36572..a6e3ac777f 100644 --- a/stepmania/src/RageSoundReader_Chain.cpp +++ b/stepmania/src/RageSoundReader_Chain.cpp @@ -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;