diff options
author | 2019-07-06 02:45:26 +1000 | |
---|---|---|
committer | 2019-07-06 02:45:26 +1000 | |
commit | 4e2959b5c0e40019bf944b2b503ef71c1a60e8f5 (patch) | |
tree | 8ae077f1e2554ded8eb4ea7805cbc80bdf39678d /src/mame/drivers/x07.cpp | |
parent | 46261ff71b1c2fa64a9a97baac86439723f07dd7 (diff) |
(nw) removal of wave.h part 2
Diffstat (limited to 'src/mame/drivers/x07.cpp')
-rw-r--r-- | src/mame/drivers/x07.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/x07.cpp b/src/mame/drivers/x07.cpp index e4be0977726..438fdd3b422 100644 --- a/src/mame/drivers/x07.cpp +++ b/src/mame/drivers/x07.cpp @@ -1501,7 +1501,6 @@ void x07_state::x07(machine_config &config) /* sound hardware */ SPEAKER(config, "mono").front_center(); BEEP(config, "beeper", 0).add_route(ALL_OUTPUTS, "mono", 0.50); - WAVE(config, "wave", m_cassette).add_route(ALL_OUTPUTS, "mono", 0.05); /* printer */ PRINTER(config, m_printer, 0); @@ -1526,6 +1525,7 @@ void x07_state::x07(machine_config &config) CASSETTE(config, m_cassette); m_cassette->set_formats(x07_cassette_formats); m_cassette->set_default_state(CASSETTE_PLAY | CASSETTE_MOTOR_DISABLED | CASSETTE_SPEAKER_ENABLED); + m_cassette->add_route(ALL_OUTPUTS, "mono", 0.05); m_cassette->set_interface("x07_cass"); /* Software lists */ |