summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/namco_163.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/namco_163.h')
-rw-r--r--src/devices/sound/namco_163.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/sound/namco_163.h b/src/devices/sound/namco_163.h
index 74d2ceacb68..a4e205b6177 100644
--- a/src/devices/sound/namco_163.h
+++ b/src/devices/sound/namco_163.h
@@ -24,7 +24,7 @@ protected:
virtual void device_clock_changed() override;
// global sound parameters
- std::unique_ptr<u8[]> m_ram;
+ std::vector<u8> m_ram;
u8 m_reg_addr;
u8 m_addr;
bool m_inc;
@@ -34,7 +34,7 @@ protected:
// internals
inline s8 get_sample(u16 addr);
- virtual void sound_stream_update_legacy(sound_stream &stream, stream_sample_t const * const *inputs, stream_sample_t * const *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;
};
DECLARE_DEVICE_TYPE(NAMCO_163, namco_163_sound_device)