summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/ti8x/tispeaker.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/ti8x/tispeaker.cpp')
-rw-r--r--src/devices/bus/ti8x/tispeaker.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/ti8x/tispeaker.cpp b/src/devices/bus/ti8x/tispeaker.cpp
index c3439f56c05..84cd9638e27 100644
--- a/src/devices/bus/ti8x/tispeaker.cpp
+++ b/src/devices/bus/ti8x/tispeaker.cpp
@@ -29,10 +29,10 @@ stereo_speaker_device::stereo_speaker_device(
MACHINE_CONFIG_START(stereo_speaker_device::device_add_mconfig)
MCFG_SPEAKER_STANDARD_STEREO("outl", "outr")
- MCFG_SOUND_ADD("lspkr", SPEAKER_SOUND, 0)
+ MCFG_DEVICE_ADD("lspkr", SPEAKER_SOUND, 0)
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "outl", 0.50)
- MCFG_SOUND_ADD("rspkr", SPEAKER_SOUND, 0)
+ MCFG_DEVICE_ADD("rspkr", SPEAKER_SOUND, 0)
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "outr", 0.50)
MACHINE_CONFIG_END
@@ -72,7 +72,7 @@ mono_speaker_device::mono_speaker_device(
MACHINE_CONFIG_START(mono_speaker_device::device_add_mconfig)
MCFG_SPEAKER_STANDARD_MONO("mono")
- MCFG_SOUND_ADD("spkr", SPEAKER_SOUND, 0)
+ MCFG_DEVICE_ADD("spkr", SPEAKER_SOUND, 0)
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.50)
MACHINE_CONFIG_END