summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/mea8000.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/mea8000.cpp')
-rw-r--r--src/devices/sound/mea8000.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/sound/mea8000.cpp b/src/devices/sound/mea8000.cpp
index ef528309897..4f7fbc453ac 100644
--- a/src/devices/sound/mea8000.cpp
+++ b/src/devices/sound/mea8000.cpp
@@ -134,7 +134,7 @@ void mea8000_device::device_start()
init_tables();
- m_stream = stream_alloc(0, 1, clock() / 60);
+ m_stream = stream_alloc_legacy(0, 1, clock() / 60);
save_item(NAME(m_output));
m_timer = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(mea8000_device::timer_expire),this));
@@ -422,7 +422,7 @@ void mea8000_device::stop_frame()
-void mea8000_device::sound_stream_update(sound_stream &stream, stream_sample_t **inputs, stream_sample_t **outputs, int samples)
+void mea8000_device::sound_stream_update_legacy(sound_stream &stream, stream_sample_t const * const *inputs, stream_sample_t * const *outputs, int samples)
{
for (int samp = 0; samp < samples; samp++)
{