summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/ddealer.cpp
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2019-01-21 18:44:26 +0100
committer Ivan Vangelista <mesgnet@yahoo.it>2019-01-21 18:44:26 +0100
commit53d99d4190039db893bed8250e88301a7697b551 (patch)
tree4aef68da2af56063d6547311b7a47f00e33492b8 /src/mame/drivers/ddealer.cpp
parent29729f9ed6233d7740debda514cb6fa7c510bc86 (diff)
devices\machine\ticket, timer: removed MCFG macros (nw)
Diffstat (limited to 'src/mame/drivers/ddealer.cpp')
-rw-r--r--src/mame/drivers/ddealer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/ddealer.cpp b/src/mame/drivers/ddealer.cpp
index 834f0a91ddf..e98802e3bde 100644
--- a/src/mame/drivers/ddealer.cpp
+++ b/src/mame/drivers/ddealer.cpp
@@ -649,7 +649,7 @@ MACHINE_CONFIG_START(ddealer_state::ddealer)
PALETTE(config, m_palette).set_format(palette_device::RRRRGGGGBBBBRGBx, 0x200);
- MCFG_TIMER_DRIVER_ADD_PERIODIC("coinsim", ddealer_state, mcu_sim, attotime::from_hz(10000))
+ TIMER(config, "coinsim").configure_periodic(FUNC(ddealer_state::mcu_sim), attotime::from_hz(10000));
SPEAKER(config, "mono").front_center();
MCFG_DEVICE_ADD("ymsnd", YM2203, XTAL(6'000'000) / 8) /* 7.5KHz */