summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/ondra.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/ondra.cpp')
-rw-r--r--src/mame/drivers/ondra.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mame/drivers/ondra.cpp b/src/mame/drivers/ondra.cpp
index 50e9cb633ce..308ffe6c857 100644
--- a/src/mame/drivers/ondra.cpp
+++ b/src/mame/drivers/ondra.cpp
@@ -15,7 +15,6 @@
#include "cpu/z80/z80.h"
#include "imagedev/cassette.h"
#include "machine/ram.h"
-#include "sound/wave.h"
#include "emupal.h"
#include "screen.h"
#include "softlist.h"
@@ -144,10 +143,10 @@ void ondra_state::ondra(machine_config &config)
// sound hardware
SPEAKER(config, "mono").front_center();
- WAVE(config, "wave", m_cassette).add_route(ALL_OUTPUTS, "mono", 0.05);
CASSETTE(config, m_cassette);
m_cassette->set_default_state(CASSETTE_STOPPED | CASSETTE_MOTOR_ENABLED | CASSETTE_SPEAKER_ENABLED);
+ m_cassette->add_route(ALL_OUTPUTS, "mono", 0.05);
m_cassette->set_interface("ondra_cass");
SOFTWARE_LIST(config, "cass_list").set_original("ondra");