summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Robbbert <Robbbert@users.noreply.github.com>2020-09-02 12:46:08 +1000
committer Robbbert <Robbbert@users.noreply.github.com>2020-09-02 12:46:08 +1000
commit041893cfa7a5c8491f116813c600849864fc4312 (patch)
treee7255ad334d83dfab8ad83caa4a4f12397e9b523
parent978c6ff83fa4bc70275bfbec48da49d80f3c4719 (diff)
crvision: turn on tape motor when CRUN or CLOAD issued.
-rw-r--r--src/mame/drivers/crvision.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/crvision.cpp b/src/mame/drivers/crvision.cpp
index 251115beda1..5b66c1ba9d6 100644
--- a/src/mame/drivers/crvision.cpp
+++ b/src/mame/drivers/crvision.cpp
@@ -135,13 +135,13 @@ SHFT Z X C V B N M . , / SHFT
- laser2001, manager: cassette format is incompatible with crvision.
- manager: appears the joystick is 4-way only.
- crvision: if you get "ERROR 00" while loading a tape, you can continue to load the remainder of it with CLOAD or CRUN.
- The bad line(s) will be missing.
+ The bad line(s) will be missing. (behaviour depends on version of Basic)
TODO:
- manager: paste can lose a character or 2 at the start of a line
- crvision: paste is very poor
- crvision: in natural key mode & in paste, shifted characters do not appear.
-- crvision: there is a buzzing noise while game carts are running.
+- crvision: there is a buzzing noise while carts are running.
*/
@@ -813,7 +813,7 @@ void crvision_state::creativision(machine_config &config)
m_psg->add_route(ALL_OUTPUTS, "mono", 1.00);
CASSETTE(config, m_cassette);
- m_cassette->set_default_state(CASSETTE_STOPPED | CASSETTE_MOTOR_DISABLED | CASSETTE_SPEAKER_ENABLED);
+ m_cassette->set_default_state(CASSETTE_PLAY | CASSETTE_MOTOR_DISABLED | CASSETTE_SPEAKER_ENABLED);
m_cassette->add_route(ALL_OUTPUTS, "mono", 0.05);
CENTRONICS(config, m_centronics, centronics_devices, "printer");