diff options
Diffstat (limited to 'src/mame/misc/amuzy.cpp')
-rw-r--r-- | src/mame/misc/amuzy.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/mame/misc/amuzy.cpp b/src/mame/misc/amuzy.cpp index 5c9607d5367..f5cdaedfa1e 100644 --- a/src/mame/misc/amuzy.cpp +++ b/src/mame/misc/amuzy.cpp @@ -300,12 +300,11 @@ void amuzy_state::amuzy(machine_config &config) TIMER(config, "scantimer").configure_scanline(FUNC(amuzy_state::scanline), m_screen, 0, 1); - SPEAKER(config, "lspeaker").front_left(); - SPEAKER(config, "rspeaker").front_right(); + SPEAKER(config, "speaker", 2).front(); OKIM9810(config, m_oki, XTAL(4'096'000)); - m_oki->add_route(0, "lspeaker", 1.00); - m_oki->add_route(1, "rspeaker", 1.00); + m_oki->add_route(0, "speaker", 1.00, 0); + m_oki->add_route(1, "speaker", 1.00, 1); } static INPUT_PORTS_START( amuzy ) |