summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/imagedev/cartslot.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/imagedev/cartslot.c')
-rw-r--r--src/emu/imagedev/cartslot.c22
1 files changed, 10 insertions, 12 deletions
diff --git a/src/emu/imagedev/cartslot.c b/src/emu/imagedev/cartslot.c
index 3d85bff90a3..d8f536017ff 100644
--- a/src/emu/imagedev/cartslot.c
+++ b/src/emu/imagedev/cartslot.c
@@ -19,16 +19,16 @@ const device_type CARTSLOT = &device_creator<cartslot_image_device>;
//-------------------------------------------------
cartslot_image_device::cartslot_image_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
- : device_t(mconfig, CARTSLOT, "Cartslot", tag, owner, clock),
- device_image_interface(mconfig, *this),
- m_extensions("bin"),
- m_interface(NULL),
- m_must_be_loaded(0),
- m_device_start(NULL),
- m_device_load(NULL),
- m_device_unload(NULL),
- m_device_partialhash(NULL),
- m_device_displayinfo(NULL)
+ : device_t(mconfig, CARTSLOT, "Cartslot", tag, owner, clock),
+ device_image_interface(mconfig, *this),
+ m_extensions("bin"),
+ m_interface(NULL),
+ m_must_be_loaded(0),
+ m_device_start(NULL),
+ m_device_load(NULL),
+ m_device_unload(NULL),
+ m_device_partialhash(NULL),
+ m_device_displayinfo(NULL)
{
}
@@ -245,5 +245,3 @@ void cartslot_image_device::call_unload()
}
process_cartridge(false);
}
-
-