diff options
Diffstat (limited to 'src/emu/sound/flt_vol.c')
-rw-r--r-- | src/emu/sound/flt_vol.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/sound/flt_vol.c b/src/emu/sound/flt_vol.c index 2e057223f8e..27b354be948 100644 --- a/src/emu/sound/flt_vol.c +++ b/src/emu/sound/flt_vol.c @@ -34,7 +34,7 @@ static DEVICE_START( filter_volume ) filter_volume_state *info = get_safe_token(device); info->gain = 0x100; - info->stream = device->machine->sound().stream_alloc(*device, 1, 1, device->machine->sample_rate(), info, filter_volume_update); + info->stream = device->machine().sound().stream_alloc(*device, 1, 1, device->machine().sample_rate(), info, filter_volume_update); } |