diff options
Diffstat (limited to 'src/mame/apple/macpwrbk030.cpp')
-rw-r--r-- | src/mame/apple/macpwrbk030.cpp | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/mame/apple/macpwrbk030.cpp b/src/mame/apple/macpwrbk030.cpp index 1c387b29e74..19c891c24d0 100644 --- a/src/mame/apple/macpwrbk030.cpp +++ b/src/mame/apple/macpwrbk030.cpp @@ -1282,8 +1282,8 @@ void macpb030_state::macpb140(machine_config &config) NSCSI_CONNECTOR(config, "scsi:3").option_set("cdrom", NSCSI_CDROM_APPLE).machine_config( [](device_t *device) { - device->subdevice<cdda_device>("cdda")->add_route(0, "^^lspeaker", 1.0); - device->subdevice<cdda_device>("cdda")->add_route(1, "^^rspeaker", 1.0); + device->subdevice<cdda_device>("cdda")->add_route(0, "^^speaker", 1.0, 0); + device->subdevice<cdda_device>("cdda")->add_route(1, "^^speaker", 1.0, 1); }); NSCSI_CONNECTOR(config, "scsi:4", mac_scsi_devices, nullptr); NSCSI_CONNECTOR(config, "scsi:5", mac_scsi_devices, nullptr); @@ -1319,12 +1319,11 @@ void macpb030_state::macpb140(machine_config &config) m_pseudovia->writepb_handler().set(FUNC(macpb030_state::via2_out_b)); m_pseudovia->irq_callback().set(FUNC(macpb030_state::via2_irq_w)); - SPEAKER(config, "lspeaker").front_left(); - SPEAKER(config, "rspeaker").front_right(); + SPEAKER(config, "speaker", 2).front(); ASC(config, m_asc, 22.5792_MHz_XTAL, asc_device::asc_type::EASC); m_asc->irqf_callback().set(m_pseudovia, FUNC(pseudovia_device::asc_irq_w)); - m_asc->add_route(0, "lspeaker", 1.0); - m_asc->add_route(1, "rspeaker", 1.0); + m_asc->add_route(0, "speaker", 1.0, 0); + m_asc->add_route(1, "speaker", 1.0, 1); RAM(config, m_ram); m_ram->set_default_size("2M"); |