From fdfcbf14e874e763b208426488b2e79e67dc735d Mon Sep 17 00:00:00 2001 From: Aaron Giles Date: Mon, 21 Sep 2020 12:06:09 -0700 Subject: Fix for qsoundhle --- src/devices/sound/qsoundhle.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/sound/qsoundhle.cpp b/src/devices/sound/qsoundhle.cpp index fe25c3a8eaa..2fa8bcfea32 100644 --- a/src/devices/sound/qsoundhle.cpp +++ b/src/devices/sound/qsoundhle.cpp @@ -64,7 +64,7 @@ void qsound_hle_device::rom_bank_updated() void qsound_hle_device::device_start() { - m_stream = stream_alloc_legacy(0, 2, clock() / 2 / 1248); // DSP program uses 1248 machine cycles per iteration + m_stream = stream_alloc(0, 2, clock() / 2 / 1248); // DSP program uses 1248 machine cycles per iteration init_register_map(); -- cgit v1.2.3