Fix audio stopping on buffer underruns

This commit is contained in:
Eduardo Bart
2012-07-31 00:12:04 -03:00
parent 6c159333dd
commit fbb3c9933a
9 changed files with 51 additions and 11 deletions

View File

@@ -63,7 +63,7 @@ void SoundSource::stop()
}
}
bool SoundSource::isPlaying()
bool SoundSource::isBuffering()
{
int state = AL_PLAYING;
alGetSourcei(m_sourceId, AL_SOURCE_STATE, &state);