diff options
Diffstat (limited to 'src/devices/machine/timekpr.cpp')
| -rw-r--r-- | src/devices/machine/timekpr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/timekpr.cpp b/src/devices/machine/timekpr.cpp index b9028e9f69e..8b7306cb7d6 100644 --- a/src/devices/machine/timekpr.cpp +++ b/src/devices/machine/timekpr.cpp @@ -228,7 +228,7 @@ void timekeeper_device::device_start() save_item(NAME(m_watchdog_delay)); emu_timer *timer = timer_alloc(); - timer->adjust(attotime::from_seconds(1), 0, attotime::from_seconds(1)); + timer->adjust_periodic(attotime::from_seconds(1)); m_watchdog_timer = timer_alloc(*this, FUNC(timekeeper_device::watchdog_callback)); m_watchdog_timer->adjust(attotime::never); |
