summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/orao.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/orao.cpp')
-rw-r--r--src/mame/drivers/orao.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mame/drivers/orao.cpp b/src/mame/drivers/orao.cpp
index 33e6e69ee05..62f25550534 100644
--- a/src/mame/drivers/orao.cpp
+++ b/src/mame/drivers/orao.cpp
@@ -16,7 +16,6 @@
#include "includes/orao.h"
#include "cpu/m6502/m6502.h"
-#include "sound/wave.h"
#include "emupal.h"
#include "screen.h"
@@ -192,11 +191,11 @@ void orao_state::orao(machine_config &config)
/* audio hardware */
SPEAKER(config, "mono").front_center();
SPEAKER_SOUND(config, "speaker").add_route(ALL_OUTPUTS, "mono", 0.50);
- WAVE(config, "wave", "cassette").add_route(ALL_OUTPUTS, "mono", 0.05);
CASSETTE(config, m_cassette);
m_cassette->set_formats(orao_cassette_formats);
m_cassette->set_default_state(CASSETTE_STOPPED | CASSETTE_SPEAKER_ENABLED | CASSETTE_MOTOR_ENABLED);
+ m_cassette->add_route(ALL_OUTPUTS, "mono", 0.05);
m_cassette->set_interface("orao_cass");
SOFTWARE_LIST(config, "cass_list").set_original("orao");