Bugfix for wrong playback reported by Sergey Sharybin in IRC.

This commit is contained in:
Joerg Mueller
2011-09-28 09:37:50 +00:00
parent 5e3110af05
commit c2323749ff

View File

@@ -132,8 +132,14 @@ void AUD_SequencerReader::read(int& length, bool& eos, sample_t* buffer)
while(eit != m_factory->m_entries.end())
{
handle = new AUD_SequencerHandle(*eit, m_device);
handles.push_front(handle);
try
{
handle = new AUD_SequencerHandle(*eit, m_device);
handles.push_front(handle);
}
catch(AUD_Exception&)
{
}
eit++;
}