summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/vgm_visualizer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/vgm_visualizer.h')
-rw-r--r--src/devices/sound/vgm_visualizer.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/sound/vgm_visualizer.h b/src/devices/sound/vgm_visualizer.h
index 8455b3d2bc0..516e4e4bfad 100644
--- a/src/devices/sound/vgm_visualizer.h
+++ b/src/devices/sound/vgm_visualizer.h
@@ -91,10 +91,10 @@ protected:
virtual void device_reset() override;
// device_sound_interface-level overrides
- void sound_stream_update(sound_stream &stream, stream_sample_t **inputs, stream_sample_t **outputs, int samples) override;
+ void sound_stream_update(sound_stream &stream, std::vector<read_stream_view> const &inputs, std::vector<write_stream_view> &outputs) override;
- void update_waveform(stream_sample_t **outputs);
- void update_fft(stream_sample_t **outputs);
+ void update_waveform();
+ void update_fft();
void init_palette(palette_device &palette) const;