diff options
Diffstat (limited to 'src/devices/sound/tms3615.h')
-rw-r--r-- | src/devices/sound/tms3615.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/sound/tms3615.h b/src/devices/sound/tms3615.h index b3325ebc354..a1eeaab5318 100644 --- a/src/devices/sound/tms3615.h +++ b/src/devices/sound/tms3615.h @@ -28,7 +28,7 @@ protected: virtual void device_start() override; // sound stream update overrides - virtual void sound_stream_update(sound_stream &stream, stream_sample_t **inputs, stream_sample_t **outputs, int samples) override; + virtual void sound_stream_update(sound_stream &stream, std::vector<read_stream_view> const &inputs, std::vector<write_stream_view> &outputs) override; private: static constexpr unsigned TMS3615_TONES = 13; |