summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/binbug.cpp
diff options
context:
space:
mode:
author Robbbert <Robbbert@users.noreply.github.com>2019-06-29 01:26:27 +1000
committer Robbbert <Robbbert@users.noreply.github.com>2019-06-29 01:26:27 +1000
commit7f1a02d861e22f203db3387171e7efa44c7ec9c9 (patch)
tree1e184042be8945bd4bd8a3311afe28bd38955a0d /src/mame/drivers/binbug.cpp
parent9e84835983f145e2d8e51ce6a0002beb62c77b69 (diff)
(nw) removed unneccesary casting of cassette_state;
Diffstat (limited to 'src/mame/drivers/binbug.cpp')
-rw-r--r--src/mame/drivers/binbug.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mame/drivers/binbug.cpp b/src/mame/drivers/binbug.cpp
index 4996932999b..dc09b165202 100644
--- a/src/mame/drivers/binbug.cpp
+++ b/src/mame/drivers/binbug.cpp
@@ -317,8 +317,9 @@ void binbug_state::binbug_base(machine_config &config)
/* Cassette */
CASSETTE(config, m_cass);
+ m_cass->set_default_state(CASSETTE_STOPPED | CASSETTE_SPEAKER_ENABLED | CASSETTE_MOTOR_ENABLED);
SPEAKER(config, "mono").front_center();
- WAVE(config, "wave", "cassette").add_route(ALL_OUTPUTS, "mono", 0.25);
+ WAVE(config, "wave", "cassette").add_route(ALL_OUTPUTS, "mono", 0.05);
}
void binbug_state::binbug(machine_config &config)