summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/neogeo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/neogeo.cpp')
-rw-r--r--src/mame/drivers/neogeo.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mame/drivers/neogeo.cpp b/src/mame/drivers/neogeo.cpp
index 9ccee33e219..ea4e6f8b6da 100644
--- a/src/mame/drivers/neogeo.cpp
+++ b/src/mame/drivers/neogeo.cpp
@@ -1934,7 +1934,8 @@ MACHINE_CONFIG_END
MACHINE_CONFIG_START(neogeo_base_state::neogeo_stereo)
- MCFG_SPEAKER_STANDARD_STEREO("lspeaker", "rspeaker")
+ SPEAKER(config, "lspeaker").front_left();
+ SPEAKER(config, "rspeaker").front_right();
MCFG_DEVICE_MODIFY("ymsnd")
MCFG_SOUND_ROUTE(0, "lspeaker", 0.28)
@@ -1964,7 +1965,7 @@ MACHINE_CONFIG_END
MACHINE_CONFIG_START(ngarcade_base_state::neogeo_mono)
- MCFG_SPEAKER_STANDARD_MONO("speaker")
+ SPEAKER(config, "speaker").front_center();
MCFG_DEVICE_MODIFY("ymsnd")
MCFG_SOUND_ROUTE(0, "speaker", 0.28)