summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/gottlieb.cpp
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2018-05-09 19:26:44 +1000
committer Vas Crabb <vas@vastheman.com>2018-05-09 19:26:44 +1000
commit6c11b3ce0131be3b14edf5ef93fa9cb2380ae45b (patch)
tree07181df4c25bf034f38aa13cf19c4ee2995d3e7f /src/mame/drivers/gottlieb.cpp
parentbe68e91d80f242ca173ba8009dd8c68dbc4b7b29 (diff)
dsp16: fix condition mask in disassembler (nw)
(nw) remove more MCFG macros and make speaker config more explicit
Diffstat (limited to 'src/mame/drivers/gottlieb.cpp')
-rw-r--r--src/mame/drivers/gottlieb.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/gottlieb.cpp b/src/mame/drivers/gottlieb.cpp
index 13a8129a94b..b7c8ab0a813 100644
--- a/src/mame/drivers/gottlieb.cpp
+++ b/src/mame/drivers/gottlieb.cpp
@@ -673,7 +673,7 @@ static const char *const qbert_knocker_names[] =
};
MACHINE_CONFIG_START(gottlieb_state::qbert_knocker)
- MCFG_SPEAKER_ADD("knocker", 0.0, 0.0, 1.0)
+ SPEAKER(config, "knocker", 0.0, 0.0, 1.0);
MCFG_DEVICE_ADD("knocker_sam", SAMPLES)
MCFG_SAMPLES_CHANNELS(1)
@@ -1787,7 +1787,7 @@ MACHINE_CONFIG_START(gottlieb_state::gottlieb_core)
MCFG_PALETTE_ADD("palette", 16)
// basic speaker configuration
- MCFG_SPEAKER_STANDARD_MONO("speaker")
+ SPEAKER(config, "speaker").front_center();
MACHINE_CONFIG_END