diff options
Diffstat (limited to 'src/devices/sound/nes_apu.h')
-rw-r--r-- | src/devices/sound/nes_apu.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/sound/nes_apu.h b/src/devices/sound/nes_apu.h index d5004d99bfb..d43c50cb3d4 100644 --- a/src/devices/sound/nes_apu.h +++ b/src/devices/sound/nes_apu.h @@ -58,7 +58,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; virtual void update_lfsr(apu_t::noise_t &chan); @@ -76,8 +76,8 @@ private: u32 m_vbl_times[SYNCS_MAX1]; /* VBL durations in samples */ u32 m_sync_times1[SYNCS_MAX1]; /* Samples per sync table */ u32 m_sync_times2[SYNCS_MAX2]; /* Samples per sync table */ - stream_buffer::sample_t m_square_lut[31]; // Non-linear Square wave output LUT - stream_buffer::sample_t m_tnd_lut[16][16][128]; // Non-linear Triangle, Noise, DMC output LUT + sound_stream::sample_t m_square_lut[31]; // Non-linear Square wave output LUT + sound_stream::sample_t m_tnd_lut[16][16][128]; // Non-linear Triangle, Noise, DMC output LUT sound_stream *m_stream; devcb_write_line m_irq_handler; |