diff options
Diffstat (limited to 'src/devices/machine/mc6846.cpp')
-rw-r--r-- | src/devices/machine/mc6846.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/mc6846.cpp b/src/devices/machine/mc6846.cpp index 72b3f1added..7cacedc9656 100644 --- a/src/devices/machine/mc6846.cpp +++ b/src/devices/machine/mc6846.cpp @@ -62,8 +62,8 @@ mc6846_device::mc6846_device(const machine_config &mconfig, const char *tag, dev void mc6846_device::device_start() { - m_interval = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(mc6846_device::timer_expire), this)); - m_one_shot = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(mc6846_device::timer_one_shot), this)); + m_interval = timer_alloc(FUNC(mc6846_device::timer_expire), this); + m_one_shot = timer_alloc(FUNC(mc6846_device::timer_one_shot), this); m_out_port_cb.resolve(); /* 8-bit output */ m_out_cp2_cb.resolve(); /* 1-bit output */ |