diff options
author | 2017-05-24 16:44:58 +0200 | |
---|---|---|
committer | 2017-05-24 16:44:58 +0200 | |
commit | 02e20545e7950e7a75a1750dadba76b8161d0827 (patch) | |
tree | b79cfaab5483ca21bda7e5b70bf90a92f0bbbdcb /src/devices/sound/es1373.h | |
parent | 561311477307cd5807566e5cf966d2be276a6b19 (diff) |
updated devices/sound devices to use device_add_mconfig insted of device_mconfig_additions (nw)
Diffstat (limited to 'src/devices/sound/es1373.h')
-rw-r--r-- | src/devices/sound/es1373.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/devices/sound/es1373.h b/src/devices/sound/es1373.h index 848e175fa58..49c728f6a10 100644 --- a/src/devices/sound/es1373.h +++ b/src/devices/sound/es1373.h @@ -30,14 +30,12 @@ public: DECLARE_READ32_MEMBER (reg_r); DECLARE_WRITE32_MEMBER(reg_w); - // optional information overrides - virtual machine_config_constructor device_mconfig_additions() const override; - protected: virtual void device_start() override; virtual void device_stop() override; virtual void device_reset() override; virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr) override; + virtual void device_add_mconfig(machine_config &config) override; virtual void sound_stream_update(sound_stream &stream, stream_sample_t **inputs, stream_sample_t **outputs, int samples) override; // Sound stream |