m_audio_ended_normally is set within the stream_update(), so update the stream before returning it. (nw)

This commit is contained in:
smf- 2016-10-06 16:45:31 +01:00
parent 4227f6052a
commit f5e9eca726

View File

@ -148,6 +148,7 @@ int cdda_device::audio_paused()
int cdda_device::audio_ended()
{
m_stream->update();
return m_audio_ended_normally;
}