summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/imagedev/snapquik.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/imagedev/snapquik.cpp')
-rw-r--r--src/devices/imagedev/snapquik.cpp15
1 files changed, 8 insertions, 7 deletions
diff --git a/src/devices/imagedev/snapquik.cpp b/src/devices/imagedev/snapquik.cpp
index 4126077513c..811910c1422 100644
--- a/src/devices/imagedev/snapquik.cpp
+++ b/src/devices/imagedev/snapquik.cpp
@@ -23,12 +23,13 @@ snapshot_image_device::snapshot_image_device(const machine_config &mconfig, cons
{
}
-snapshot_image_device::snapshot_image_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock) :
- device_t(mconfig, type, tag, owner, clock),
- device_image_interface(mconfig, *this),
- m_file_extensions(nullptr),
- m_interface(nullptr),
- m_timer(nullptr)
+snapshot_image_device::snapshot_image_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock)
+ : device_t(mconfig, type, tag, owner, clock)
+ , device_image_interface(mconfig, *this)
+ , m_file_extensions(nullptr)
+ , m_interface(nullptr)
+ , m_delay(attotime::zero)
+ , m_timer(nullptr)
{
}
//-------------------------------------------------
@@ -65,7 +66,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(m_delay, 0);
return image_init_result::PASS;
}