summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/instruct.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/instruct.cpp')
-rw-r--r--src/mame/drivers/instruct.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/instruct.cpp b/src/mame/drivers/instruct.cpp
index 8a4b74a8c79..07eb2509694 100644
--- a/src/mame/drivers/instruct.cpp
+++ b/src/mame/drivers/instruct.cpp
@@ -47,7 +47,6 @@
#include "cpu/s2650/s2650.h"
#include "imagedev/cassette.h"
#include "imagedev/snapquik.h"
-#include "sound/wave.h"
#include "speaker.h"
#include "instruct.lh"
@@ -438,10 +437,11 @@ void instruct_state::instruct(machine_config &config)
/* quickload */
QUICKLOAD(config, "quickload", "pgm", attotime::from_seconds(1)).set_load_callback(FUNC(instruct_state::quickload_cb), this);
+ SPEAKER(config, "mono").front_center();
+
/* cassette */
CASSETTE(config, m_cass);
- SPEAKER(config, "mono").front_center();
- WAVE(config, "wave", m_cass).add_route(ALL_OUTPUTS, "mono", 0.05);
+ m_cass->add_route(ALL_OUTPUTS, "mono", 0.05);
}
/* ROM definition */