diff options
author | 2018-05-09 19:26:44 +1000 | |
---|---|---|
committer | 2018-05-09 19:26:44 +1000 | |
commit | 6c11b3ce0131be3b14edf5ef93fa9cb2380ae45b (patch) | |
tree | 07181df4c25bf034f38aa13cf19c4ee2995d3e7f /src/devices/bus/nes/pt554.cpp | |
parent | be68e91d80f242ca173ba8009dd8c68dbc4b7b29 (diff) |
dsp16: fix condition mask in disassembler (nw)
(nw) remove more MCFG macros and make speaker config more explicit
Diffstat (limited to 'src/devices/bus/nes/pt554.cpp')
-rw-r--r-- | src/devices/bus/nes/pt554.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/nes/pt554.cpp b/src/devices/bus/nes/pt554.cpp index 4211a27d234..6a1b8ac4325 100644 --- a/src/devices/bus/nes/pt554.cpp +++ b/src/devices/bus/nes/pt554.cpp @@ -91,7 +91,7 @@ static const char *const pt554_sample_names[] = MACHINE_CONFIG_START(nes_bandai_pt554_device::device_add_mconfig) // additional sound hardware - MCFG_SPEAKER_STANDARD_MONO("addon") + SPEAKER(config, "addon").front_center(); MCFG_DEVICE_ADD("samples", SAMPLES, 0) MCFG_SAMPLES_CHANNELS(8) |