diff options
Diffstat (limited to 'src/devices/imagedev/snapquik.cpp')
-rw-r--r-- | src/devices/imagedev/snapquik.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/devices/imagedev/snapquik.cpp b/src/devices/imagedev/snapquik.cpp index 4126077513c..0e24b9f81ba 100644 --- a/src/devices/imagedev/snapquik.cpp +++ b/src/devices/imagedev/snapquik.cpp @@ -28,6 +28,8 @@ snapshot_image_device::snapshot_image_device(const machine_config &mconfig, devi device_image_interface(mconfig, *this), m_file_extensions(nullptr), m_interface(nullptr), + m_delay_seconds(0), + m_delay_attoseconds(0), m_timer(nullptr) { } @@ -65,7 +67,7 @@ void snapshot_image_device::device_start() image_init_result snapshot_image_device::call_load() { /* adjust the timer */ - m_timer->adjust(m_delay,0); + m_timer->adjust(attotime(m_delay_seconds, m_delay_attoseconds),0); return image_init_result::PASS; } |