diff options
Diffstat (limited to 'src/mame/audio/midway.cpp')
-rw-r--r-- | src/mame/audio/midway.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/audio/midway.cpp b/src/mame/audio/midway.cpp index bdeb723d81c..4aea1c337ad 100644 --- a/src/mame/audio/midway.cpp +++ b/src/mame/audio/midway.cpp @@ -47,7 +47,7 @@ extern const device_type MIDWAY_SQUAWK_N_TALK = &device_creator<midway_squawk_n_ // midway_ssio_device - constructor //------------------------------------------------- -midway_ssio_device::midway_ssio_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock) +midway_ssio_device::midway_ssio_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : device_t(mconfig, MIDWAY_SSIO, "Midway SSIO Sound Board", tag, owner, clock, "midssio", __FILE__), device_mixer_interface(mconfig, *this, 2), m_cpu(*this, "cpu"), @@ -490,7 +490,7 @@ void midway_ssio_device::device_timer(emu_timer &timer, device_timer_id id, int // midway_chip_squeak_deluxe_device - constructor //------------------------------------------------- -midway_chip_squeak_deluxe_device::midway_chip_squeak_deluxe_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock) +midway_chip_squeak_deluxe_device::midway_chip_squeak_deluxe_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : device_t(mconfig, MIDWAY_CHIP_SQUEAK_DELUXE, "Midway Chip Squeak Deluxe Sound Board", tag, owner, clock, "midcsd", __FILE__), device_mixer_interface(mconfig, *this), m_cpu(*this, "cpu"), @@ -688,7 +688,7 @@ void midway_chip_squeak_deluxe_device::device_timer(emu_timer &timer, device_tim // midway_sounds_good_device - constructor //------------------------------------------------- -midway_sounds_good_device::midway_sounds_good_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock) +midway_sounds_good_device::midway_sounds_good_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : device_t(mconfig, MIDWAY_SOUNDS_GOOD, "Midway Sounds Good Sound Board", tag, owner, clock, "midsg", __FILE__), device_mixer_interface(mconfig, *this), m_cpu(*this, "cpu"), @@ -858,7 +858,7 @@ void midway_sounds_good_device::device_timer(emu_timer &timer, device_timer_id i // midway_turbo_chip_squeak_device - constructor //------------------------------------------------- -midway_turbo_chip_squeak_device::midway_turbo_chip_squeak_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock) +midway_turbo_chip_squeak_device::midway_turbo_chip_squeak_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : device_t(mconfig, MIDWAY_TURBO_CHIP_SQUEAK, "Midway Turbo Chip Squeak Sound Board", tag, owner, clock, "midtcs", __FILE__), device_mixer_interface(mconfig, *this), m_cpu(*this, "cpu"), @@ -1021,7 +1021,7 @@ void midway_turbo_chip_squeak_device::device_timer(emu_timer &timer, device_time // midway_squawk_n_talk_device - constructor //------------------------------------------------- -midway_squawk_n_talk_device::midway_squawk_n_talk_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock) +midway_squawk_n_talk_device::midway_squawk_n_talk_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : device_t(mconfig, MIDWAY_SQUAWK_N_TALK, "Midway Squawk 'n' Talk Sound Board", tag, owner, clock, "midsnt", __FILE__), device_mixer_interface(mconfig, *this), m_cpu(*this, "cpu"), |