summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--src/emu/disound.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/disound.cpp b/src/emu/disound.cpp
index 57fd6a9c030..151b072caa6 100644
--- a/src/emu/disound.cpp
+++ b/src/emu/disound.cpp
@@ -366,7 +366,7 @@ void device_mixer_interface::interface_pre_start()
u32 no = get_sound_requested_outputs();
u32 nc = ni > no ? ni : no;
for(u32 i = 0; i != nc; i++)
- stream_alloc(1, 1, SAMPLE_RATE_ADAPTIVE);
+ stream_alloc(1, 1, device().machine().sample_rate());
}
void device_mixer_interface::sound_stream_update(sound_stream &stream)