From b9e8f970c40a03b3da2192a32fd58b9745e9d253 Mon Sep 17 00:00:00 2001 From: AJR Date: Sat, 10 Dec 2022 21:49:32 -0500 Subject: [PATCH] bus/thomson/speech.cpp: Fix sound routing --- src/devices/bus/thomson/speech.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/bus/thomson/speech.cpp b/src/devices/bus/thomson/speech.cpp index 2266e1dd793..0c14b0d6d9e 100644 --- a/src/devices/bus/thomson/speech.cpp +++ b/src/devices/bus/thomson/speech.cpp @@ -32,7 +32,7 @@ void thomson_speech_device::io_map(address_map &map) void thomson_speech_device::device_add_mconfig(machine_config &config) { mea8000_device &mea8000(MEA8000(config, "mea8000", 4_MHz_XTAL)); - mea8000.add_route(ALL_OUTPUTS, "mono", 1.0); + mea8000.add_route(ALL_OUTPUTS, "speaker", 1.0); // FIXME: actually drives main speaker through the sound line on the bus SPEAKER(config, "speaker").front_center();