diff --git a/src/mame/audio/gottlieb.cpp b/src/mame/audio/gottlieb.cpp index 9fecd3af229..fa30276265c 100644 --- a/src/mame/audio/gottlieb.cpp +++ b/src/mame/audio/gottlieb.cpp @@ -40,7 +40,7 @@ const device_type GOTTLIEB_SOUND_REV2 = device_creator //------------------------------------------------- gottlieb_sound_r0_device::gottlieb_sound_r0_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) - : device_t(mconfig, GOTTLIEB_SOUND_REV1, "Gottlieb Sound rev. 0", tag, owner, clock, "gotsndr0", __FILE__) + : device_t(mconfig, GOTTLIEB_SOUND_REV0, "Gottlieb Sound rev. 0", tag, owner, clock, "gotsndr0", __FILE__) , device_mixer_interface(mconfig, *this) , m_audiocpu(*this, "audiocpu") , m_r6530(*this, "r6530") @@ -178,7 +178,7 @@ gottlieb_sound_r1_device::gottlieb_sound_r1_device( uint32_t clock, const char *shortname, const char *source) - : device_t(mconfig, type, "Gottlieb Sound rev. 1", tag, owner, clock, shortname, source) + : device_t(mconfig, type, name, tag, owner, clock, shortname, source) , device_mixer_interface(mconfig, *this) , m_audiocpu(*this, "audiocpu") , m_riot(*this, "riot") diff --git a/src/mame/audio/leland.cpp b/src/mame/audio/leland.cpp index 91c9c4092bb..0ae2dcf0644 100644 --- a/src/mame/audio/leland.cpp +++ b/src/mame/audio/leland.cpp @@ -417,7 +417,7 @@ redline_80186_sound_device::redline_80186_sound_device(const machine_config &mco const device_type ATAXX_80186 = device_creator; ataxx_80186_sound_device::ataxx_80186_sound_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) - : leland_80186_sound_device(mconfig, REDLINE_80186, "80186 DAC (Ataxx)", tag, owner, clock, "ataxx_80186_sound", __FILE__) + : leland_80186_sound_device(mconfig, ATAXX_80186, "80186 DAC (Ataxx)", tag, owner, clock, "ataxx_80186_sound", __FILE__) { m_type = TYPE_ATAXX; } @@ -425,7 +425,7 @@ ataxx_80186_sound_device::ataxx_80186_sound_device(const machine_config &mconfig const device_type WSF_80186 = device_creator; wsf_80186_sound_device::wsf_80186_sound_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) - : leland_80186_sound_device(mconfig, REDLINE_80186, "80186 DAC (WSF)", tag, owner, clock, "wsf_80186_sound", __FILE__) + : leland_80186_sound_device(mconfig, WSF_80186, "80186 DAC (WSF)", tag, owner, clock, "wsf_80186_sound", __FILE__) { m_type = TYPE_WSF; }