From f5e9eca72649d913c52218bccead7e35a84ae954 Mon Sep 17 00:00:00 2001 From: smf- Date: Thu, 6 Oct 2016 16:45:31 +0100 Subject: [PATCH] m_audio_ended_normally is set within the stream_update(), so update the stream before returning it. (nw) --- src/devices/sound/cdda.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/devices/sound/cdda.cpp b/src/devices/sound/cdda.cpp index 45ef2a1dc42..e24127a65c1 100644 --- a/src/devices/sound/cdda.cpp +++ b/src/devices/sound/cdda.cpp @@ -148,6 +148,7 @@ int cdda_device::audio_paused() int cdda_device::audio_ended() { + m_stream->update(); return m_audio_ended_normally; }