diff options
Diffstat (limited to 'src/devices/sound/lynx.h')
-rw-r--r-- | src/devices/sound/lynx.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/sound/lynx.h b/src/devices/sound/lynx.h index b729afe4ebe..d0b3b73c961 100644 --- a/src/devices/sound/lynx.h +++ b/src/devices/sound/lynx.h @@ -56,7 +56,7 @@ protected: virtual void device_clock_changed() override; // sound stream update overrides - virtual void sound_stream_update(sound_stream &stream, std::vector<read_stream_view> const &inputs, std::vector<write_stream_view> &outputs) override; + virtual void sound_stream_update(sound_stream &stream) override; void reset_channel(LYNX_AUDIO *channel); void shift(int chan_nr); @@ -85,7 +85,7 @@ protected: virtual void device_start() override ATTR_COLD; // sound stream update overrides - virtual void sound_stream_update(sound_stream &stream, std::vector<read_stream_view> const &inputs, std::vector<write_stream_view> &outputs) override; + virtual void sound_stream_update(sound_stream &stream) override; }; |