summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2020-09-21 12:06:09 -0700
committer Aaron Giles <aaron@aarongiles.com>2020-09-21 12:06:09 -0700
commitfdfcbf14e874e763b208426488b2e79e67dc735d (patch)
treee9389ef597a694fa4b101e02f90b9a9b59f67ac2
parente23636fb1710b24c2fdc50015663b680de0620a8 (diff)
Fix for qsoundhle
-rw-r--r--src/devices/sound/qsoundhle.cpp2
1 files changed, 1 insertions, 1 deletions
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();