diff options
author | 2025-04-28 21:42:32 +0200 | |
---|---|---|
committer | 2025-04-28 21:42:36 +0200 | |
commit | 8be5131548b1719db9fbabf6955dbb1583507328 (patch) | |
tree | d74f795ffccfdac3a6f34810614d884b6aa0d43f /src/emu/sound.cpp | |
parent | d50917e8e37aafd5b5aca784b6dface1b2abdd50 (diff) |
More fixes
Diffstat (limited to 'src/emu/sound.cpp')
-rw-r--r-- | src/emu/sound.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/emu/sound.cpp b/src/emu/sound.cpp index 576e971c9b5..f5101320690 100644 --- a/src/emu/sound.cpp +++ b/src/emu/sound.cpp @@ -515,6 +515,7 @@ void sound_stream::update() stream->update_nodeps(); do_update(); + m_samples_to_update = 0; m_in_update = false; } @@ -533,6 +534,7 @@ void sound_stream::update_nodeps() // If there's anything to do, well, do it do_update(); + m_samples_to_update = 0; m_in_update = false; } |