diff options
author | 2019-03-25 22:44:58 +0100 | |
---|---|---|
committer | 2019-03-25 22:44:58 +0100 | |
commit | c24473ddff715ecec2e258a6eb38960cf8c8e98e (patch) | |
tree | 8ea44b6396a6129913c0aac13859b5de9965e972 /src/devices/imagedev/snapquik.cpp | |
parent | 009cba4fb8102102168ef32870892438327f3705 (diff) | |
parent | 598cd5227223c3b04ca31f0dbc1981256d9ea3ff (diff) |
conflict resolution (nw)
Diffstat (limited to 'src/devices/imagedev/snapquik.cpp')
-rw-r--r-- | src/devices/imagedev/snapquik.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/devices/imagedev/snapquik.cpp b/src/devices/imagedev/snapquik.cpp index 0e24b9f81ba..4126077513c 100644 --- a/src/devices/imagedev/snapquik.cpp +++ b/src/devices/imagedev/snapquik.cpp @@ -28,8 +28,6 @@ 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) { } @@ -67,7 +65,7 @@ void snapshot_image_device::device_start() image_init_result snapshot_image_device::call_load() { /* adjust the timer */ - m_timer->adjust(attotime(m_delay_seconds, m_delay_attoseconds),0); + m_timer->adjust(m_delay,0); return image_init_result::PASS; } |