summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/audio/vc4000.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/audio/vc4000.cpp')
-rw-r--r--src/mame/audio/vc4000.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/audio/vc4000.cpp b/src/mame/audio/vc4000.cpp
index df4a308f619..84c19a2d942 100644
--- a/src/mame/audio/vc4000.cpp
+++ b/src/mame/audio/vc4000.cpp
@@ -31,15 +31,15 @@ vc4000_sound_device::vc4000_sound_device(const machine_config &mconfig, const ch
void vc4000_sound_device::device_start()
{
- m_channel = stream_alloc(0, 1, machine().sample_rate());
+ m_channel = stream_alloc_legacy(0, 1, machine().sample_rate());
}
//-------------------------------------------------
-// sound_stream_update - handle a stream update
+// sound_stream_update_legacy - handle a stream update
//-------------------------------------------------
-void vc4000_sound_device::sound_stream_update(sound_stream &stream, stream_sample_t **inputs, stream_sample_t **outputs, int samples)
+void vc4000_sound_device::sound_stream_update_legacy(sound_stream &stream, stream_sample_t const * const *inputs, stream_sample_t * const *outputs, int samples)
{
int i;
stream_sample_t *buffer = outputs[0];