diff options
Diffstat (limited to 'src/mame/machine/mcr.cpp')
-rw-r--r-- | src/mame/machine/mcr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/machine/mcr.cpp b/src/mame/machine/mcr.cpp index 3b4323d94fe..61e99cbe5d3 100644 --- a/src/mame/machine/mcr.cpp +++ b/src/mame/machine/mcr.cpp @@ -86,7 +86,7 @@ void mcr_state::machine_start() void mcr_nflfoot_state::machine_start() { /* allocate a timer for the IPU watchdog */ - m_ipu_watchdog_timer = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(mcr_nflfoot_state::ipu_watchdog_reset), this)); + m_ipu_watchdog_timer = timer_alloc(FUNC(mcr_nflfoot_state::ipu_watchdog_reset), this); } |