diff options
Diffstat (limited to 'src/devices/sound/gaelco.cpp')
-rw-r--r-- | src/devices/sound/gaelco.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/devices/sound/gaelco.cpp b/src/devices/sound/gaelco.cpp index 0c2495a4d64..2a213408095 100644 --- a/src/devices/sound/gaelco.cpp +++ b/src/devices/sound/gaelco.cpp @@ -76,10 +76,10 @@ gaelco_gae1_device::gaelco_gae1_device(const machine_config &mconfig, device_typ Writes length bytes to the sound buffer ============================================================================*/ -void gaelco_gae1_device::sound_stream_update(sound_stream &stream, stream_sample_t **inputs, stream_sample_t **outputs, int samples) +void gaelco_gae1_device::sound_stream_update(sound_stream &stream, std::vector<read_stream_view> const &inputs, std::vector<write_stream_view> &outputs) { /* fill all data needed */ - for (int j = 0; j < samples; j++) + for (int j = 0; j < outputs[0].samples(); j++) { int output_l = 0, output_r = 0; @@ -177,12 +177,12 @@ void gaelco_gae1_device::sound_stream_update(sound_stream &stream, stream_sample #endif /* now that we have computed all channels, save current data to the output buffer */ - outputs[0][j] = output_l; - outputs[1][j] = output_r; + outputs[0].put_int(j, output_l, 32768); + outputs[1].put_int(j, output_r, 32768); } - if (wavraw) - wav_add_data_32lr(wavraw, outputs[0], outputs[1], samples, 0); +// if (wavraw) +// wav_add_data_buffer(wavraw, outputs[0], outputs[1]); } /*============================================================================ |