mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-12-02 08:53:42 +00:00
Make sure streams are "pumped"
This commit is contained in:
parent
ba3cc38d09
commit
c4492f88ee
1 changed files with 4 additions and 0 deletions
|
@ -1518,6 +1518,10 @@ void OpenALSoundRenderer::UpdateSounds()
|
||||||
{
|
{
|
||||||
alcProcessContext(Context);
|
alcProcessContext(Context);
|
||||||
|
|
||||||
|
// For some reason this isn't being called?
|
||||||
|
foreach(SoundStream*, stream, Streams)
|
||||||
|
(*stream)->IsEnded();
|
||||||
|
|
||||||
if(DisconnectNotify)
|
if(DisconnectNotify)
|
||||||
{
|
{
|
||||||
ALCint connected = ALC_TRUE;
|
ALCint connected = ALC_TRUE;
|
||||||
|
|
Loading…
Reference in a new issue