diff options
Diffstat (limited to 'src/mame/audio/seibu.cpp')
-rw-r--r-- | src/mame/audio/seibu.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mame/audio/seibu.cpp b/src/mame/audio/seibu.cpp index 2279adbddee..9883e9b9a25 100644 --- a/src/mame/audio/seibu.cpp +++ b/src/mame/audio/seibu.cpp @@ -76,8 +76,8 @@ const device_type SEIBU_SOUND = &device_creator<seibu_sound_device>; -seibu_sound_device::seibu_sound_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock) - : device_t(mconfig, SEIBU_SOUND, "Seibu Sound System", tag, owner, clock, "seibu_sound", __FILE__), m_sound_cpu(nullptr), +seibu_sound_device::seibu_sound_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) + : device_t(mconfig, SEIBU_SOUND, "Seibu Sound System", tag, owner, clock, "seibu_sound", __FILE__), m_main2sub_pending(0), m_sub2main_pending(0), m_rst10_irq(0xff), @@ -506,7 +506,7 @@ ADDRESS_MAP_END const device_type SEIBU_ADPCM = &device_creator<seibu_adpcm_device>; -seibu_adpcm_device::seibu_adpcm_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock) +seibu_adpcm_device::seibu_adpcm_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : device_t(mconfig, SEIBU_ADPCM, "Seibu ADPCM (MSM5205)", tag, owner, clock, "seibu_adpcm", __FILE__), device_sound_interface(mconfig, *this), m_stream(nullptr), @@ -514,6 +514,7 @@ seibu_adpcm_device::seibu_adpcm_device(const machine_config &mconfig, std::strin m_end(0), m_nibble(0), m_playing(0), + m_rom_tag(nullptr), m_base(nullptr) { } |