diff options
Diffstat (limited to 'src/devices/imagedev/snapquik.cpp')
-rw-r--r-- | src/devices/imagedev/snapquik.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/devices/imagedev/snapquik.cpp b/src/devices/imagedev/snapquik.cpp index 78d55333f16..a3c55ff4064 100644 --- a/src/devices/imagedev/snapquik.cpp +++ b/src/devices/imagedev/snapquik.cpp @@ -20,23 +20,23 @@ const device_type SNAPSHOT = &device_creator<snapshot_image_device>; snapshot_image_device::snapshot_image_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : device_t(mconfig, SNAPSHOT, "Snapshot", tag, owner, clock, "snapshot_image", __FILE__), - device_image_interface(mconfig, *this), - m_file_extensions(NULL), - m_interface(NULL), - m_delay_seconds(0), - m_delay_attoseconds(0), - m_timer(NULL) + device_image_interface(mconfig, *this), + m_file_extensions(nullptr), + m_interface(nullptr), + m_delay_seconds(0), + m_delay_attoseconds(0), + m_timer(nullptr) { } snapshot_image_device::snapshot_image_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, const char *source) : device_t(mconfig, type, name, tag, owner, clock, shortname, source), device_image_interface(mconfig, *this), - m_file_extensions(NULL), - m_interface(NULL), + m_file_extensions(nullptr), + m_interface(nullptr), m_delay_seconds(0), m_delay_attoseconds(0), - m_timer(NULL) + m_timer(nullptr) { } //------------------------------------------------- |