summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/imagedev/snapquik.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/imagedev/snapquik.c')
-rw-r--r--src/emu/imagedev/snapquik.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/emu/imagedev/snapquik.c b/src/emu/imagedev/snapquik.c
index da87c282611..84db8011af2 100644
--- a/src/emu/imagedev/snapquik.c
+++ b/src/emu/imagedev/snapquik.c
@@ -17,16 +17,16 @@ 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),
- device_image_interface(mconfig, *this),
- m_delay_attoseconds(0)
+ : device_t(mconfig, SNAPSHOT, "Snapshot", tag, owner, clock),
+ device_image_interface(mconfig, *this),
+ m_delay_attoseconds(0)
{
}
snapshot_image_device::snapshot_image_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock) :
- device_t(mconfig, type, name, tag, owner, clock),
+ device_t(mconfig, type, name, tag, owner, clock),
device_image_interface(mconfig, *this),
- m_delay_attoseconds(0)
+ m_delay_attoseconds(0)
{
}
//-------------------------------------------------
@@ -95,7 +95,6 @@ const device_type QUICKLOAD = &device_creator<quickload_image_device>;
//-------------------------------------------------
quickload_image_device::quickload_image_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
- : snapshot_image_device(mconfig, QUICKLOAD, "Quickload", tag, owner, clock)
+ : snapshot_image_device(mconfig, QUICKLOAD, "Quickload", tag, owner, clock)
{
}
-