summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/intv/voice.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/intv/voice.cpp')
-rw-r--r--src/devices/bus/intv/voice.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/intv/voice.cpp b/src/devices/bus/intv/voice.cpp
index 4ce9417b467..d10abb03e23 100644
--- a/src/devices/bus/intv/voice.cpp
+++ b/src/devices/bus/intv/voice.cpp
@@ -72,9 +72,9 @@ void intv_voice_device::late_subslot_setup()
MACHINE_CONFIG_START(intv_voice_device::device_add_mconfig)
SPEAKER(config, "mono_voice").front_center();
- MCFG_DEVICE_ADD("sp0256_speech", SP0256, 3120000)
+ SP0256(config, m_speech, 3120000);
/* The Intellivoice uses a speaker with its own volume control so the relative volumes to use are subjective */
- MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono_voice", 1.00)
+ m_speech->add_route(ALL_OUTPUTS, "mono_voice", 1.00);
MCFG_INTV_CARTRIDGE_ADD("subslot", intv_cart, nullptr)
MACHINE_CONFIG_END