summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/px4.cpp
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2019-01-22 17:47:37 +0100
committer Ivan Vangelista <mesgnet@yahoo.it>2019-01-22 17:47:37 +0100
commit064847316c75dfc448f2b2b0e53a874a24f23cdf (patch)
treeb546037d288ea1fdcc495bbfc539720c78d3d466 /src/mame/drivers/px4.cpp
parenta6f64287a3acbcb6ee629774918407be30807237 (diff)
magedev\cassette: removed MCFG macros (nw)
Diffstat (limited to 'src/mame/drivers/px4.cpp')
-rw-r--r--src/mame/drivers/px4.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/px4.cpp b/src/mame/drivers/px4.cpp
index f5ff8450691..e0d3625f2c4 100644
--- a/src/mame/drivers/px4.cpp
+++ b/src/mame/drivers/px4.cpp
@@ -1522,8 +1522,8 @@ MACHINE_CONFIG_START(px4_state::px4)
MCFG_CENTRONICS_OUTPUT_LATCH_ADD("cent_data_out", "centronics")
// external cassette
- MCFG_CASSETTE_ADD("extcas")
- MCFG_CASSETTE_DEFAULT_STATE(CASSETTE_PLAY | CASSETTE_SPEAKER_ENABLED | CASSETTE_MOTOR_DISABLED)
+ CASSETTE(config, m_ext_cas);
+ m_ext_cas->set_default_state(CASSETTE_PLAY | CASSETTE_SPEAKER_ENABLED | CASSETTE_MOTOR_DISABLED);
TIMER(config, m_ext_cas_timer).configure_generic(FUNC(px4_state::ext_cassette_read));