Skip to content
Snippets Groups Projects
Commit b977cfd2 authored by Jörg Müller's avatar Jörg Müller
Browse files

Fix T37293: trying to fix scrubbing not stopping playback

parent fe094eaf
No related branches found
No related tags found
No related merge requests found
...@@ -994,7 +994,7 @@ void AUD_OpenALDevice::updateStreams() ...@@ -994,7 +994,7 @@ void AUD_OpenALDevice::updateStreams()
if(info != AL_PLAYING) if(info != AL_PLAYING)
{ {
// if it really stopped // if it really stopped
if(sound->m_eos) if(sound->m_eos && info != AL_INITIAL)
{ {
if(sound->m_stop) if(sound->m_stop)
sound->m_stop(sound->m_stop_data); sound->m_stop(sound->m_stop_data);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment