diff options
author | 2015-11-11 16:31:18 +0100 | |
---|---|---|
committer | 2015-11-11 16:31:18 +0100 | |
commit | d1dc775f9b686170416fbca6a615fbea108d0ff1 (patch) | |
tree | 64c9053aa0ac1c0d9b15a5d628d5a2ca8e296db8 /src/devices/imagedev/flopdrv.cpp | |
parent | 7c7e62455e91e9eae51577cd06c4fd38858a3d50 (diff) |
Some cleanups and init fixes with help of ReSharper C++ (nw)
Diffstat (limited to 'src/devices/imagedev/flopdrv.cpp')
-rw-r--r-- | src/devices/imagedev/flopdrv.cpp | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/devices/imagedev/flopdrv.cpp b/src/devices/imagedev/flopdrv.cpp index 30537e5d190..a9639b3ce9a 100644 --- a/src/devices/imagedev/flopdrv.cpp +++ b/src/devices/imagedev/flopdrv.cpp @@ -709,11 +709,13 @@ legacy_floppy_image_device::legacy_floppy_image_device(const machine_config &mco m_rdy(0), m_dskchg(0), m_drive_id(0), - m_active(0), + m_active(0), + m_config(NULL), m_flags(0), m_max_track(0), m_num_sides(0), - m_current_track(0), + m_current_track(0), + m_index_timer(NULL), m_index_pulse_callback(NULL), m_rpm(0.0f), m_id_index(0), @@ -741,11 +743,13 @@ legacy_floppy_image_device::legacy_floppy_image_device(const machine_config &mco m_rdy(0), m_dskchg(0), m_drive_id(0), - m_active(0), + m_active(0), + m_config(NULL), m_flags(0), m_max_track(0), m_num_sides(0), - m_current_track(0), + m_current_track(0), + m_index_timer(NULL), m_index_pulse_callback(NULL), m_rpm(0.0f), m_id_index(0), |