diff options
Diffstat (limited to 'src/mame/drivers/px8.cpp')
-rw-r--r-- | src/mame/drivers/px8.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/px8.cpp b/src/mame/drivers/px8.cpp index 512c5b56246..f7672deb7f6 100644 --- a/src/mame/drivers/px8.cpp +++ b/src/mame/drivers/px8.cpp @@ -769,7 +769,6 @@ void px8_state::px8(machine_config &config) /* sound hardware */ SPEAKER(config, "mono").front_center(); - WAVE(config, "wave", m_cassette).add_route(0, "mono", 0.05); /* cartridge */ GENERIC_CARTSLOT(config, "capsule1", generic_plain_slot, "px8_cart", "bin,rom"); @@ -781,6 +780,7 @@ void px8_state::px8(machine_config &config) CASSETTE(config, m_cassette); m_cassette->set_default_state(CASSETTE_STOPPED | CASSETTE_MOTOR_DISABLED | CASSETTE_SPEAKER_ENABLED); + m_cassette->add_route(0, "mono", 0.05); /* internal ram */ RAM(config, RAM_TAG).set_default_size("64K"); |