diff options
Diffstat (limited to 'src/devices/sound/flt_vol.cpp')
-rw-r--r-- | src/devices/sound/flt_vol.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/devices/sound/flt_vol.cpp b/src/devices/sound/flt_vol.cpp index e980b502b8e..e209e44a5ed 100644 --- a/src/devices/sound/flt_vol.cpp +++ b/src/devices/sound/flt_vol.cpp @@ -48,5 +48,6 @@ void filter_volume_device::sound_stream_update(sound_stream &stream, stream_samp void filter_volume_device::flt_volume_set_volume(float volume) { + m_stream->update(); m_gain = (int)(volume * 256); } |